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
+36
View File
@@ -0,0 +1,36 @@
package v5.gui;
import v5.draw.Draw;
import v5.game.Control;
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.getContentPane().setPreferredSize(new Dimension(Control.CELLCOUNT_X + 19, Control.CELLCOUNT_Y + 19));
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setResizable(true);
d = new Draw();
d.setVisible(true);
jf.add(d);
jf.pack();
jf.setLocationRelativeTo(null);
jf.setVisible(true);
}
}