Example #1
0
 /// <inheritdoc />
 public bool Equals(TileRef other)
 {
     return(MapIndex.Equals(other.MapIndex) &&
            GridIndex.Equals(other.GridIndex) &&
            GridIndices.Equals(other.GridIndices) &&
            Tile.Equals(other.Tile));
 }
Example #2
0
 /// <inheritdoc />
 public bool Equals(GridCoordinates other)
 {
     return(GridID.Equals(other.GridID) && Position.Equals(other.Position));
 }