blob: 54a775af779d594566953ebfd57dad3e85fbac88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package cc.polyfrost.oneconfig.test;
import cc.polyfrost.oneconfig.config.annotations.Switch;
public class TestPage {
@Switch(
name = "Epic Test Switch"
)
boolean test = false;
}
|