summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/IGameState.java
blob: 56ab917941a1b66c033ba9741e5d443924fe656a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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();

}