diff --git a/MBINCompiler/Source/CommandLineOptions.cs b/MBINCompiler/Source/CommandLineOptions.cs index 03be51d02..3ab871d54 100644 --- a/MBINCompiler/Source/CommandLineOptions.cs +++ b/MBINCompiler/Source/CommandLineOptions.cs @@ -28,6 +28,7 @@ public static class OptionBackers public static List optExcludeFilters = null; public static HeaderFormat optFormatVersion = HeaderFormat.V4; public static bool optUseThreads = true; + public static bool optTyped = false; } // --debug @@ -80,6 +81,9 @@ internal set { // --no-threads public static bool UseThreads { get => optUseThreads; internal set => optUseThreads = value; } + // --typed + public static bool IncludeTypeInfo { get => optTyped; internal set => optTyped = value; } + public static readonly List