aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/test')
-rw-r--r--src/main/java/io/polyfrost/oneconfig/test/TestConfig.java49
1 files changed, 49 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 6cb82da..a7b7b90 100644
--- a/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java
+++ b/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java
@@ -17,6 +17,31 @@ public class TestConfig extends Config {
public static boolean switchTest;
@Option(
+ name = "Test switch",
+ description = "Best description",
+ subcategory = "Test",
+ type = OptionType.SWITCH
+ )
+ public static boolean switchTest1;
+
+ @Option(
+ name = "Test switch",
+ description = "Best description",
+ subcategory = "Test",
+ type = OptionType.SWITCH,
+ size = 2
+ )
+ public static boolean switchTest2;
+
+ @Option(
+ name = "Test switch",
+ description = "Best description",
+ subcategory = "Test",
+ type = OptionType.SWITCH
+ )
+ public static boolean switchTest3;
+
+ @Option(
name = "Test Page",
type = OptionType.PAGE,
subcategory = "Test"
@@ -31,6 +56,30 @@ public class TestConfig extends Config {
)
public static TestPage testPage2 = new TestPage();
+ @Option(
+ name = "Test switch",
+ description = "Best description",
+ subcategory = "Other subcategory",
+ type = OptionType.SWITCH
+ )
+ public static boolean switchTest4;
+
+ @Option(
+ name = "Test switch",
+ description = "Best description",
+ subcategory = "Other subcategory",
+ type = OptionType.SWITCH
+ )
+ public static boolean switchTest5;
+
+ @Option(
+ name = "Test switch",
+ description = "Best description",
+ subcategory = "Other subcategory",
+ type = OptionType.SWITCH
+ )
+ public static boolean switchTest6;
+
public TestConfig() {
super(new Mod("hacks", ModType.UTIL_QOL, "ShadyDev", "1.0"), "hacksConfig.json");
}