18 lines
322 B
Java
18 lines
322 B
Java
![]() |
package jrummikub.model;
|
||
|
|
||
|
public interface IGameState {
|
||
|
|
||
|
public ITable getTable();
|
||
|
|
||
|
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();
|
||
|
|
||
|
}
|