/** * Klasse game. * * @author */ import processing.core.PApplet; public class Game extends PApplet{ /*---------------Attribute-----*/ int cellSize = 40; /*---------------Konstruktor---*/ public Game() { String[] processingArgs = {"MySketch"}; PApplet.runSketch(processingArgs, this); } /*---------------Methoden------*/ public void settings() { size(10 * cellSize, 10*cellSize); } }