
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@19 72836036-5685-4462-b002-a69064685172
17 lines
229 B
Java
17 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() {
|
|
|
|
}
|
|
|
|
}
|