Neues GUI und icons

This commit is contained in:
Noah
2021-09-28 22:05:49 +02:00
parent 16d469386c
commit 44d83c6cb7
11 changed files with 127 additions and 40 deletions
+31
View File
@@ -0,0 +1,31 @@
package game;
import gui.GUI;
public class Control {
private GUI gui;
private int xSize, ySize, cellCount;
public Control(){
gui = new GUI(this);
gui.buildControlWindow();
}
public void buildGameWindow(int xSize, int ySize, int cellCount){
this.xSize = xSize;
this.ySize = ySize;
this.cellCount = cellCount;
gui.buildGameWindow();
}
}