Files
Othello/src/othello/players/NegamaxPlayer.java

21 lines
386 B
Java

package othello.players;
import othello.Pair;
import othello.Point;
import othello.State;
import java.util.ArrayList;
public class NegamaxPlayer implements Player {
@Override
public Pair<Point, Point> play(ArrayList<Pair<Point, Point>> moves, State game, Player player) {
return null;
}
public void negamax(State game, int depth, Player player) {
}
}