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

Definition at line 144 of file SimulatedGroup.cs.

        {
            if (object.ReferenceEquals(null, obj))
                return false;
            if (object.ReferenceEquals(this, obj))
                return true;
            if (obj.GetType() != this.GetType())
                return false;
            return Equals((SimulatedGroup)obj);
        }