public interface TwoPlayerGame { public int getResource(int resource); public void setResource(int resource, int updatedValue); public int getPlayer(); public void setPlayer(int player); public boolean isValidMove(int resource, int updatedValue); public boolean isGameOver(); public void displayBoard(); }