Skip to content

Instantly share code, notes, and snippets.

@tarynsauer
Created January 12, 2014 17:08
Show Gist options
  • Save tarynsauer/8387498 to your computer and use it in GitHub Desktop.
Save tarynsauer/8387498 to your computer and use it in GitHub Desktop.
public class AI {
private AIPlayer currentPlayer;
private static final int WIN = 1;
private static final int LOSE = -1;
private static final int TIE = 0;
private static final int NEG_INF = -999;
private static final int POS_INF = 999;
public AI(AIPlayer currentPlayer) {
this.currentPlayer = currentPlayer;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment