You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
436 B

public class Game {
Gameboard gb;
Player p1;
Player p2;
Player p3;
Player p4;
public static void main(String[] args) {
Game g = new Game();
}
public Game() {
this.gb = new Gameboard();
gb.initGameboard();
p1 = new Player("Rot", 40, 43);
p2 = new Player("Blau", 44, 47);
p3 = new Player("Gelb", 48, 51);
p4 = new Player("Grün", 52, 55);
}
}