Added State

This commit is contained in:
Quentin Legot 2021-01-27 11:49:49 +01:00
parent 39fe7336b0
commit 728e454ce0

21
src/othello/State.java Normal file
View File

@ -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) {
}
}