blob: 93fe201388ba56e5f7918dd07a6d9f7123ff32a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}
|