command window

This commit is contained in:
sharlottes
2022-04-13 01:12:44 +09:00
parent 35e6b5550b
commit e7db1dfbfe
3 changed files with 69 additions and 2 deletions

View File

@@ -2,12 +2,13 @@ package UnitInfo.ui.windows;
public class WindowTables {
public static WindowTable
unitTable, waveTable, coreTable, playerTable;
unitTable, waveTable, coreTable, playerTable, commandTable;
public static void init() {
unitTable = new UnitDisplay();
waveTable = new WaveDisplay();
coreTable = new CoreDisplay();
playerTable = new PlayerDisplay();
commandTable = new CommandDisplay();
}
}