Skip to content

Commit

Permalink
Add run through for GameState1
Browse files Browse the repository at this point in the history
  • Loading branch information
sas12028 committed Apr 5, 2017
1 parent 1a1ae37 commit 2083674
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/GameState1.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ public static void main(String[] args){
System.out.println(m);
}
g2.result(g2.actions().get(0)).printState();
CheckersGameState g3 = new GameState1(b3, true);
g3.printState();
for(Move m: g3.actions()){
System.out.println(m);
}
g3.result(g3.actions().get(0)).printState();
System.out.println("This is initial board followed by entire game played");
CheckersGameState state = new GameState1();
state.printState();
Expand Down

0 comments on commit 2083674

Please sign in to comment.