Backup added

This commit is contained in:
Noah
2021-09-28 22:10:02 +02:00
parent 9d2c7c9891
commit c3e19db3d3
15 changed files with 726 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
package v4.main;
import v4.game.Clock;
import v4.game.Control;
import v4.gui.GUI;
public class Main {
public static void main(String[] args) {
GUI g = new GUI();
Control c = new Control();
Clock clk = new Clock();
c.create();
g.create();
clk.start();
}
}