-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
9,547 additions
and
1,730 deletions.
There are no files selected for viewing
3,082 changes: 1,544 additions & 1,538 deletions
3,082
Cards/Fallacies/Argumentum Fallacies - Taxonomy.csv
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
Generation/Converters/Argumentum.AssetConverter/FallacyDocumentConfigBase.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Collections.Generic; | ||
using System.Threading.Tasks; | ||
using Argumentum.AssetConverter.Entities; | ||
|
||
namespace Argumentum.AssetConverter; | ||
|
||
public abstract class FallacyDocumentConfigBase : DocumentConfig | ||
{ | ||
public string DataSet { get; set; } = @"..\..\..\Data\Mindmap\Argumentum Fallacies - Taxonomy.csv"; | ||
|
||
public abstract Task GenerateFallacyFile(IList<Fallacy> fallacies, AssetConverterConfig config, | ||
string targetDirectory, string language); | ||
|
||
} |
Oops, something went wrong.