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