player window

This commit is contained in:
sharlottes
2022-04-12 23:42:12 +09:00
parent d04b8aae88
commit 04b6c514d1
3 changed files with 119 additions and 2 deletions

View File

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