|
Britbot
|
Tests if two enemy groups are the same.
Definition at line 621 of file EnemyGroup.cs. {
if (object.ReferenceEquals(null, obj))
return false;
if (object.ReferenceEquals(this, obj))
return true;
if (obj.GetType() != this.GetType())
return false;
return Equals((EnemyGroup) obj);
}
|
1.7.6.1