First Size Calculating

This commit is contained in:
Noah
2021-10-03 22:39:26 +02:00
parent e2c07d8d2e
commit 9cb505d4da
4 changed files with 46 additions and 20 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ public class GUI {
menuWindow = new MenuWindow(title, control);
}
public void createGameWindow(int cellCountX, int cellCountY){
gameWindow = new GameWindow(title, control, cellCountX, cellCountY);
public void createGameWindow(int cellCountX, int cellCountY, int width, int height){
gameWindow = new GameWindow(title, control, cellCountX, cellCountY, width, height);
}
public void createControlWindow(){