TileLocation: added operator !=

Dieser Commit ist enthalten in:
Reinder Feenstra 2020-12-21 23:09:21 +01:00
Ursprung 0bd80ec78d
Commit 1cd6d802c6

Datei anzeigen

@ -34,6 +34,11 @@ struct TileLocation
{
return x == other.x && y == other.y;
}
bool operator !=(const TileLocation& other) const
{
return x != other.x || y != other.y;
}
};
struct TileLocationHash