blob: 0f8f6922a9a38d1a7039d86880718f76f05c7c85 (
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_Test {
@Switch(
name = "Epic Test Switch"
)
boolean test = false;
}
|