Britbot
override bool Britbot.EnemyGroup.Equals ( object  obj) [inline]

Tests if two enemy groups are the same.

Parameters:
objthe object to test with
Returns:
True if identical or false otherwise

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);
        }