summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2026-05-19 19:30:13 -0400
committerAndrew Opalach <andrew@akon.city> 2026-05-19 19:30:13 -0400
commit3ff2dff147b24d9c64d92609f866a2fcd7b6b197 (patch)
tree6f9cc1a26b01e40e428cd873b172d81815728620 /Config.cs
parent4f31c9e16b58eeb1e914d58a4e92b8adc6529450 (diff)
downloadWorldTuningTool-3ff2dff147b24d9c64d92609f866a2fcd7b6b197.tar.gz
WorldTuningTool-3ff2dff147b24d9c64d92609f866a2fcd7b6b197.tar.bz2
WorldTuningTool-3ff2dff147b24d9c64d92609f866a2fcd7b6b197.zip
Add preset function, improve restore button logic
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Config.cs b/Config.cs
index 686e1c6..83a03f0 100755
--- a/Config.cs
+++ b/Config.cs
@@ -100,5 +100,6 @@ namespace WorldTuningTool
public PatchConfig Patches { get; set; } = new PatchConfig();
public Dictionary<Stage, List<Plugin.Override>> Overrides { get; set; } = new Dictionary<Stage, List<Plugin.Override>>();
+ public Dictionary<string, List<Plugin.Override>> Presets { get; set; } = new Dictionary<string, List<Plugin.Override>>();
}
}