mirror of
https://github.com/yawaflua/Informatis.git
synced 2025-12-10 12:09:27 +02:00
17 lines
491 B
Java
17 lines
491 B
Java
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();
|
|
waveTable = new WaveDisplay();
|
|
coreTable = new CoreDisplay();
|
|
playerTable = new PlayerDisplay();
|
|
toolTable = new ToolDisplay();
|
|
editorTable = new MapEditorDisplay();
|
|
}
|
|
}
|