Othello/src/othello/State.java

23 lines
255 B
Java
Raw Normal View History

2021-01-27 11:49:49 +01:00
package othello;
public class State {
2021-01-27 12:06:32 +01:00
private int[][] plateau;
2021-01-27 11:49:49 +01:00
public boolean isOver() {
return false;
}
public void getMove(String player) {
}
public int getScore(String player) {
return 0;
}
public void play(int move) {
}
}