package jrummikub.model; import java.util.List; /** Class managing the overall and momentary GameState */ public class GameState { private Table table; private List players; private int activePlayer; private StoneHeap gameHeap; /** Changes the activePlayer to the next {@link Player} in the list */ public void nextPlayer() { } public Player activePlayer() { // TODO implement this return null; } }