Created
January 12, 2014 17:08
-
-
Save tarynsauer/8387498 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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