diff --git a/src/othello/State.java b/src/othello/State.java new file mode 100644 index 0000000..94174d9 --- /dev/null +++ b/src/othello/State.java @@ -0,0 +1,21 @@ +package othello; + +public class State { + + public boolean isOver() { + return false; + } + + public void getMove(String player) { + + } + + public int getScore(String player) { + return 0; + } + + public void play(int move) { + + } + +}