From 08f4e3ec6dbf7842161bd0f4dca3975455a470dc Mon Sep 17 00:00:00 2001 From: Xeight Date: Sun, 3 Nov 2024 22:56:13 +0500 Subject: [PATCH] useless --- PoppingBottles/Config.cs | 7 ------- PoppingBottles/Mod.cs | 2 -- 2 files changed, 9 deletions(-) delete mode 100644 PoppingBottles/Config.cs 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());