TileLocation: added operator !=
Dieser Commit ist enthalten in:
Ursprung
0bd80ec78d
Commit
1cd6d802c6
@ -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
|
||||
|
||||
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren