add ToolDisplay

This commit is contained in:
sharlottes
2022-04-17 17:35:55 +09:00
parent 78f3b2d782
commit 81b2215c9a
15 changed files with 626 additions and 350 deletions

View File

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