package games; import java.util.List; /** * Interface describing game rules. Implementing class manages the game state. * * @author Marcin Szubert * */ public interface BoardGame { public boolean endOfGame(); public double evalMove(Player player, GameMove move); public List findMoves(); public int getCurrentPlayer(); public int getOutcome(); public void makeMove(GameMove move); public void reset(); public void switchPlayer(); public Board getBoard(); }