|
Britbot
|
Tests if two targets are the same returns true if the other target is a no target false otherwise.
Implements Britbot.ITarget. Definition at line 55 of file NoTarget.cs. {
if (operandB is NoTarget)
return true;
return false;
}
|
1.7.6.1