protected bool Equals(MapNpc other)
 {
     // TODO: Check instance name instead.
     return(Id == other.Id && Coord.Equals(other.Coord) && Rotation.Equals(other.Rotation));
 }
Beispiel #2
0
 protected bool Equals(MapNpc other)
 {
     return(Id == other.Id && Coord.Equals(other.Coord) && Rotation.Equals(other.Rotation));
 }