diff options
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/test')
-rw-r--r-- | src/main/java/cc/polyfrost/oneconfig/test/TestConfig.java | 73 |
1 files changed, 72 insertions, 1 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/test/TestConfig.java b/src/main/java/cc/polyfrost/oneconfig/test/TestConfig.java index a741865..141f975 100644 --- a/src/main/java/cc/polyfrost/oneconfig/test/TestConfig.java +++ b/src/main/java/cc/polyfrost/oneconfig/test/TestConfig.java @@ -195,6 +195,7 @@ public class TestConfig extends Config { max = 25 ) public static int slider1; + @Option( name = "Stepped Slider", subcategory = "Sliders", @@ -207,8 +208,78 @@ public class TestConfig extends Config { ) public static float slider2; + @Option( + name = "Slider", + type = OptionType.SLIDER, + category = "subcategory test", + min = 5, + max = 3287 + ) + public static float slider = 26; + + @Option( + name = "Slider", + type = OptionType.SLIDER, + category = "subcategory test", + min = 5, + max = 3287 + ) + public static float slider10 = 26; + + @Option( + name = "Slider", + type = OptionType.SLIDER, + category = "subcategory test", + min = 5, + max = 3287, + subcategory = "Second subcategory" + ) + public static float slider11 = 26; - TestHud testHud = new TestHud(); + @Option( + name = "Header Test", + type = OptionType.HEADER, + category = "subcategory test", + subcategory = "Second subcategory", + size = 2 + ) + public static boolean somethingHere; + + + @Option( + name = "Slider", + type = OptionType.SLIDER, + category = "subcategory test", + min = 5, + max = 3287, + subcategory = "Second subcategory" + ) + public static float slider12 = 26; + + @ConfigPage( + name = "Test page", + location = PageLocation.TOP, + category = "subcategory test", + subcategory = "Second subcategory" + ) + public static TestPage testPage23 = new TestPage(); + + @ConfigPage( + name = "Test page", + location = PageLocation.BOTTOM, + category = "subcategory test", + subcategory = "Second subcategory" + ) + public static TestPage testPage24 = new TestPage(); + + @Option( + name = "Slider", + type = OptionType.SLIDER, + category = "subcategory test", + min = 5, + max = 3287 + ) + public static float slider13 = 26; public TestConfig() { |