diff options
Diffstat (limited to 'src/jrummikub/model/GameState.java')
-rw-r--r-- | src/jrummikub/model/GameState.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jrummikub/model/GameState.java b/src/jrummikub/model/GameState.java index 0e43a9c..3bd4d94 100644 --- a/src/jrummikub/model/GameState.java +++ b/src/jrummikub/model/GameState.java @@ -14,10 +14,10 @@ public class GameState implements IGameState { public GameState() { table = new Table(); players = new ArrayList<Player>(); - players.add(new Player(Color.red)); - players.add(new Player(Color.yellow)); - players.add(new Player(Color.green)); - players.add(new Player(Color.black)); + 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)); activePlayer = 0; gameHeap = new StoneHeap(); } |