Exemplo n.º 1
0
    private bool ValidateKingIsSafeOnSquare(int[] square)
    {
        bool          isSafe;
        ChessBoardSim simBoard = SimulateBoard(GetAlliedKing(), square);

        isSafe = simBoard.checkIfKingIsChecked();
        return(isSafe);
    }