blob: 8e64bc44c79a6401abcbfcd587dd84c7059ef2d7 (
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 void setTable(ITable table);
public int getPlayerCount();
/** 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);
}
|