diff options
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/test')
-rw-r--r-- | src/main/java/io/polyfrost/oneconfig/test/TestConfig.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java b/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java index d045df0..6cb82da 100644 --- a/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java +++ b/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java @@ -23,6 +23,14 @@ public class TestConfig extends Config { ) public static TestPage testPage = new TestPage(); + @Option( + name = "Test Page But better", + type = OptionType.PAGE, + subcategory = "Test", + description = "The best page to have ever existed" + ) + public static TestPage testPage2 = new TestPage(); + public TestConfig() { super(new Mod("hacks", ModType.UTIL_QOL, "ShadyDev", "1.0"), "hacksConfig.json"); } |