map editor windows - edit tools

This commit is contained in:
sharlottes
2022-04-19 19:45:00 +09:00
parent de799fffd7
commit 8cc932a647
6 changed files with 624 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ package UnitInfo.ui.windows;
public class WindowTables {
public static WindowTable
unitTable, waveTable, coreTable, playerTable, toolTable;
public static MapEditorDisplay editorTable;
public static void init() {
unitTable = new UnitDisplay();
@@ -10,5 +11,6 @@ public class WindowTables {
coreTable = new CoreDisplay();
playerTable = new PlayerDisplay();
toolTable = new ToolDisplay();
editorTable = new MapEditorDisplay();
}
}