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
+31
View File
@@ -0,0 +1,31 @@
package v4.gui;
import v4.draw.Draw;
import javax.swing.*;
public class GUI {
JFrame jf;
public static Draw d;
public static final int WIDTH = 512, HEIGHT = 512, XOFF = 10, YOFF = 10;
public void create(){
jf = new JFrame("Game of Live");
jf.setSize(550, 570);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setLocationRelativeTo(null);
jf.setResizable(false);
d = new Draw();
d.setBounds(0, 0, 550, 570);
d.setVisible(true);
jf.add(d);
jf.setVisible(true);
}
}