Included x06da plate layout

This commit is contained in:
2020-08-12 18:22:50 +02:00
parent ba042d65bc
commit 9c1007ccc2
2 changed files with 74 additions and 15 deletions

View File

@@ -54,9 +54,11 @@ public class MainPanel extends Panel {
public enum BasePlateLayout {
normal,
sf
sf,
x06da
}
public static final BasePlateLayout BASE_PLATE_LAYOUT = App.hasArgument("sf") ? BasePlateLayout.sf : BasePlateLayout.normal;
public static final BasePlateLayout BASE_PLATE_LAYOUT = App.hasArgument("sf") ? BasePlateLayout.sf :
( App.hasArgument("x06da") ? BasePlateLayout.x06da : BasePlateLayout.normal);
public MainPanel() {
initComponents();