|
Britbot
|
Tests if two enemy groups are the same.
Definition at line 604 of file EnemyGroup.cs. {
if (this.EnemyPirates.Count != other.EnemyPirates.Count)
return false;
for (int i = 0; i < this.EnemyPirates.Count; i++)
if (this.EnemyPirates[i] != other.EnemyPirates[i])
return false;
return true;
}
|
1.7.6.1