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

20 lines
364 B
Java
Raw Normal View History

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();
public IPlayer getNthNextPlayer(int i);
}