Britbot
bool Britbot.NoTarget.Equals ( ITarget  operandB) [inline]

Tests if two targets are the same returns true if the other target is a no target false otherwise.

Parameters:
operandBThe other target to test
Returns:
true if operandB is NoTarget, false either

Implements Britbot.ITarget.

Definition at line 55 of file NoTarget.cs.

        {
            if (operandB is NoTarget)
                return true;
            return false;
        }