Othello/src/othello/State.java

22 lines
229 B
Java
Raw Normal View History

2021-01-27 11:49:49 +01:00
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) {
}
}