diff options
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/test/TestPage.java')
-rw-r--r-- | src/main/java/io/polyfrost/oneconfig/test/TestPage.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/test/TestPage.java b/src/main/java/io/polyfrost/oneconfig/test/TestPage.java new file mode 100644 index 0000000..93fe201 --- /dev/null +++ b/src/main/java/io/polyfrost/oneconfig/test/TestPage.java @@ -0,0 +1,14 @@ +package io.polyfrost.oneconfig.test; + +import io.polyfrost.oneconfig.config.annotations.Option; +import io.polyfrost.oneconfig.config.data.OptionType; + +public class TestPage { + @Option( + name = "Other test switch", + description = "Best description", + subcategory = "Test", + type = OptionType.SWITCH + ) + public static boolean switchTest; +} |