summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/GameState.java
blob: ce81ece5911d6b2f85ef769792fe15575d760939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package jrummikub.model;

/** Class managing the overall and momentary GameState */
public class GameState {
	private Table table;
	private Player[] players;
	private int activePlayer;
	private StoneHeap gameHeap;

	/** Changes the activePlayer to the next {@link Player} in the list */
	public void nextPlayer() {

	}

	public Player activePlayer() {

	}

}