diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2024-04-29 12:58:04 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2024-04-29 12:58:04 -0600 |
| commit | e6de326810c4f56810e98d4e2812995df29bfbb9 (patch) | |
| tree | 99a2819b58949a64177fb33c2d26f7280457fbe9 /src/Companion.h | |
| parent | 4d6744dcaca3bb1902a74e823353d7d79c6d3d39 (diff) | |
Added support for external files instead of a rom
Diffstat (limited to 'src/Companion.h')
| -rw-r--r-- | src/Companion.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Companion.h b/src/Companion.h index 26c9253..f8990b5 100644 --- a/src/Companion.h +++ b/src/Companion.h @@ -16,6 +16,11 @@ class SWrapper; namespace fs = std::filesystem; +enum class ParseMode { + Default, + Directory +}; + enum class GBIVersion { f3d, f3dex, @@ -73,6 +78,7 @@ struct TorchConfig { std::string outputPath; std::string moddingPath; ExportType exporterType; + ParseMode parseMode; bool otrMode; bool debug; bool modding; |
