summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs12
1 files changed, 9 insertions, 3 deletions
diff --git a/Config.cs b/Config.cs
index b8f831d..8367360 100755
--- a/Config.cs
+++ b/Config.cs
@@ -1,4 +1,6 @@
-using SharpPluginLoader.Core.Configuration;
+//#define DO_COMMON
+
+using SharpPluginLoader.Core.Configuration;
using SharpPluginLoader.Core;
namespace WorldTuningTool
@@ -48,7 +50,7 @@ namespace WorldTuningTool
internal class Config : IConfig
{
public String Name => "WorldTuningTool";
- public String Version => "0.9.3";
+ public String Version => "0.9.4";
public static string StageToString(StageExt stage)
{
@@ -187,8 +189,12 @@ namespace WorldTuningTool
public PatchConfig Patches { get; set; } = new PatchConfig();
+#if DO_COMMON
+ public List<Plugin.Override> CommonGlobals { get; set; } = new List<Plugin.Override>();
+#endif
+ public Dictionary<string, List<Plugin.Override>> Globals { get; set; } = new Dictionary<string, List<Plugin.Override>>();
+ public string SelectedGlobal { get; set; } = "";
public Dictionary<StageExt, List<Plugin.Override>> Overrides { get; set; } = new Dictionary<StageExt, List<Plugin.Override>>();
public Dictionary<string, List<Plugin.Override>> Sets { get; set; } = new Dictionary<string, List<Plugin.Override>>();
- public string SelectedPreset { get; set; } = "";
}
}