This commit is contained in:
hihoman23 2026-06-25 11:56:53 +02:00
parent 6629b8569c
commit d2e0901df6

View File

@ -8,11 +8,12 @@ import processing.core.PApplet;
public class Game extends PApplet{
/*---------------Attribute-----*/
int cellSize = 40;
Render render;
/*---------------Konstruktor---*/
public Game() {
String[] processingArgs = {"MySketch"};
PApplet.runSketch(processingArgs, this);
render = new Render(this);
}
/*---------------Methoden------*/