Final Commit for School. More cool stuf after this commit.

This commit is contained in:
Noah
2021-12-13 21:03:25 +01:00
parent e8d56e5055
commit 73c247bfa2
3 changed files with 45 additions and 4 deletions
+1 -3
View File
@@ -8,16 +8,14 @@ import java.util.TimerTask;
public class Clock extends Thread {
private Control control;
private GUI gui;
private boolean running = true;
private int velocity, delay;
private boolean isFirstGen;
private Timer t;
private TimerTask tt;
public Clock(Control control, GUI gui) {
public Clock(Control control) {
this.control = control;
this.gui = gui;
this.velocity = 500;
this.delay = 0;