blob: d5c12ba369c10608a70712365d114c4e46c6417a (
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 List<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() {
}
}
|