git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@155 72836036-5685-4462-b002-a69064685172
21 lines
No EOL
401 B
Java
21 lines
No EOL
401 B
Java
package jrummikub.model;
|
|
|
|
public interface IGameState {
|
|
|
|
public ITable getTable();
|
|
public void setTable(ITable table);
|
|
|
|
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();
|
|
|
|
public IPlayer getNthNextPlayer(int i);
|
|
|
|
} |