diff --git a/PoppingBottles/Config.cs b/PoppingBottles/Config.cs deleted file mode 100644 index d95d759..0000000 --- a/PoppingBottles/Config.cs +++ /dev/null @@ -1,7 +0,0 @@ -using System.Text.Json.Serialization; - -namespace PoppingBottles; - -public class Config { - [JsonInclude] public bool SomeSetting = true; -} diff --git a/PoppingBottles/Mod.cs b/PoppingBottles/Mod.cs index b7026b3..789a441 100644 --- a/PoppingBottles/Mod.cs +++ b/PoppingBottles/Mod.cs @@ -6,10 +6,8 @@ using GDWeave.Modding; namespace PoppingBottles; public class Mod : IMod { - public Config Config; public Mod(IModInterface modInterface) { - this.Config = modInterface.ReadConfig(); modInterface.Logger.Information("Loaded PoppingBottles!"); modInterface.RegisterScriptMod(new Patch());