コード例 #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));
 }
コード例 #2
0
 protected bool Equals(MapNpc other)
 {
     return(Id == other.Id && Coord.Equals(other.Coord) && Rotation.Equals(other.Rotation));
 }