Set correct player names :)

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@212 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-10 03:37:34 +02:00
parent a64492dc4b
commit 4a860e53cf
5 changed files with 22 additions and 12 deletions

View file

@ -14,10 +14,10 @@ public class GameState implements IGameState {
public GameState() {
table = new Table();
players = new ArrayList<Player>();
players.add(new Player("Player 1", Color.RED));
players.add(new Player("Player 2", Color.YELLOW));
players.add(new Player("Player 3", Color.GREEN));
players.add(new Player("Player 4", Color.BLACK));
players.add(new Player("Ida", Color.RED));
players.add(new Player("Matthias", Color.YELLOW));
players.add(new Player("Jannis", Color.GREEN));
players.add(new Player("Bennet", Color.BLACK));
activePlayer = 0;
gameHeap = new StoneHeap();
}