diff options
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/test')
| -rw-r--r-- | src/main/java/io/polyfrost/oneconfig/test/TestConfig.java | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java b/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java index a7b7b90..fc8296d 100644 --- a/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java +++ b/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java @@ -9,35 +9,35 @@ import io.polyfrost.oneconfig.config.interfaces.Config; public class TestConfig extends Config { @Option( - name = "Test switch", + name = "Test checkbox", description = "Best description", subcategory = "Test", - type = OptionType.SWITCH + type = OptionType.CHECKBOX ) public static boolean switchTest; @Option( - name = "Test switch", + name = "Test checkbox", description = "Best description", subcategory = "Test", - type = OptionType.SWITCH + type = OptionType.CHECKBOX ) public static boolean switchTest1; @Option( - name = "Test switch", + name = "Test checkbox", description = "Best description", subcategory = "Test", - type = OptionType.SWITCH, + type = OptionType.CHECKBOX, size = 2 ) public static boolean switchTest2; @Option( - name = "Test switch", + name = "Test checkbox", description = "Best description", subcategory = "Test", - type = OptionType.SWITCH + type = OptionType.CHECKBOX ) public static boolean switchTest3; @@ -49,14 +49,6 @@ 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(); - - @Option( name = "Test switch", description = "Best description", subcategory = "Other subcategory", |
