18 lines
229 B
Java
18 lines
229 B
Java
![]() |
package jrummikub.model;
|
||
|
|
||
|
public class GameState {
|
||
|
private Table table;
|
||
|
private Player[] players;
|
||
|
private int activePlayer;
|
||
|
private StoneHeap gameHeap;
|
||
|
|
||
|
public void nextPlayer() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public Player activePlayer() {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|