Files
Informatis/src/UnitInfo/ui/windows/WindowTables.java
2022-04-17 17:35:55 +09:00

15 lines
397 B
Java

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