Generic JComboBox

This commit is contained in:
Noah
2021-09-29 14:42:13 +02:00
parent e06f61f7eb
commit c7fa4c8e91
7 changed files with 34 additions and 26 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
package v5.draw;
import v4.gui.GUI;
import v5.gui.GUI;
import v5.game.Control;
import javax.swing.*;
+1 -1
View File
@@ -19,7 +19,7 @@ public class Clock extends Thread{
}
};
t.scheduleAtFixedRate(tt, 1, 1);
t.scheduleAtFixedRate(tt, 1, 1000);
}
+3 -1
View File
@@ -3,9 +3,11 @@ package v5.gui;
import v5.draw.Draw;
import v5.game.Control;
import javax.swing.*;
import java.awt.*;
public class GUI {
public class GUI extends JFrame {
JFrame jf;