From 728e454ce0ac50e52c1fab410d497ba55bbb84b8 Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Wed, 27 Jan 2021 11:49:49 +0100 Subject: [PATCH] Added State --- src/othello/State.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/othello/State.java 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) { + + } + +}