package chess2;

class BoardEvaluation
{
    public static int negamax(MoveNode MOVE)
    {
        //The worse your opponent's best reply is
        //The better your move
        int worth = 0;

        return worth;
    }



}