FeatureSwitchクラス作成 WIP

This commit is contained in:
r-ca 2024-01-21 18:56:15 +09:00
parent 0be12e73a8
commit 882207682f
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -0,0 +1,14 @@
package one.nem.lacerta.utils;
public class FeatureSwitch {
public static class FeatureMaster {
public static boolean enableSearch = true;
}
public static class Setting {
public static boolean showDisplayMenu = false;
public static boolean showDataMenu = false;
public static boolean showScanMenu = false;
}
}