Skip to content

Instantly share code, notes, and snippets.

@tarynsauer
Created January 12, 2014 15:50
Show Gist options
  • Save tarynsauer/8386282 to your computer and use it in GitHub Desktop.
Save tarynsauer/8386282 to your computer and use it in GitHub Desktop.
public interface Player {
public String getMarker();
public Player getOpponent();
void setOpponent(Player player);
void addMarker(Board board, int move);
void makeMove(Board board);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment