blob: 46ea0b09c1c9c83267bbfb623d9a1681c312d591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package jrummikub.model;
public interface IGameState {
public ITable getTable();
public int getPlayerCount();
public IPlayer getPlayer(int i);
/** Changes the activePlayer to the next {@link Player} in the list */
public void nextPlayer();
public IPlayer getActivePlayer();
public StoneHeap getGameHeap();
public IPlayer getNthNextPlayer(int i);
}
|