Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add interface for GameState and Move
  • Loading branch information
joesweeney committed Apr 2, 2017
1 parent b4facf6 commit 3aee584
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/CheckersGameState.java
@@ -0,0 +1,7 @@
import java . util . List ;
public interface CheckersGameState {
String player ();
List < Move > actions ();
CheckersGameState result ( Move x );
void printState ();
}
4 changes: 4 additions & 0 deletions src/Move.java
@@ -0,0 +1,4 @@

public interface Move {

}

0 comments on commit 3aee584

Please sign in to comment.