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