This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/src/jrummikub/model/IGameState.java
Matthias Schiffer 38f6f0dc24 Add some endOfTurn handling to RoundControl
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@155 72836036-5685-4462-b002-a69064685172
2011-05-05 21:13:59 +02:00

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);
}