|
Britbot
|
Tests if two enemy groups are the same.
Implements Britbot.ITarget. Definition at line 231 of file EnemyGroup.cs. {
EnemyGroup enemyGroup = operandB as EnemyGroup;
if (enemyGroup != null)
{
EnemyGroup b = enemyGroup;
return this.Id == b.Id;
}
return false;
}
|
1.7.6.1