示例#1
0
 protected bool Equals(MapPortal other)
 {
     return(Id == other.Id &&
            Flags == other.Flags &&
            Target == other.Target &&
            Coord.Equals(other.Coord) &&
            Rotation.Equals(other.Rotation));
 }
 protected bool Equals(MapPortal other)
 {
     return(Id == other.Id &&
            Name == other.Name &&
            Enable == other.Enable &&
            IsVisible == other.IsVisible &&
            MinimapVisible == other.MinimapVisible &&
            Target == other.Target &&
            Coord.Equals(other.Coord) &&
            Rotation.Equals(other.Rotation) &&
            TargetPortalId == other.TargetPortalId &&
            PortalType == other.PortalType &&
            TriggerId == other.TriggerId);
 }