Contol Windwo Update. Velocity Change implemented. FONT and some other Var and method needs to be implemented in the GUI class not in Menu Window

UPdate
This commit is contained in:
Noah Kessinger
2021-12-01 14:41:48 +01:00
parent 031e7ee47d
commit 6f6aa54d72
3 changed files with 39 additions and 16 deletions
+18 -16
View File
@@ -1,7 +1,6 @@
package main;
import data.database.DataBase;
import game.Control;
public class Main {
@@ -13,27 +12,30 @@ public class Main {
public static void main(String[] args) {
Control control = new Control();
control.start();
DataBase dataBase = new DataBase();
// DataBase dataBase = new DataBase();
// dataBase.deleteTables();
// dataBase.createTables();
// boolean[][] cells = new boolean[44][66];
//
// for (int x = 0; x < 6; x++) {
// for (int y = 0; y < 6; y++) {
// cells[x][y] = false;
// }
// }
//
//
// cells[3][3] = true;
//
// dataBase.saveGrid(cells, "whoa", 88);
//
// boolean[][] cells = new boolean[44][66];
//for (int x = 0; x < 6; x++) {
// for (int y = 0; y < 6; y++) {
// }
// }
// for (int x = 0; x < 6; x++) {
// for (int y = 0; y < 6; y++) {
// cells[x][y] = true;
// }
// }
// dataBase.saveGrid(cells, "Noah", 1012);
// System.out.println(dataBase.getAllGrids());
// boolean[][] x = dataBase.getGrid("penis");