Added State
This commit is contained in:
parent
39fe7336b0
commit
728e454ce0
21
src/othello/State.java
Normal file
21
src/othello/State.java
Normal 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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user