After some testing Region seems OK
This commit is contained in:
+4
-4
@@ -29,10 +29,10 @@ struct Tile {
|
||||
|
||||
Tile() = default;
|
||||
Tile(int i, int j, int k, int l) : x(i), y(j), depth(k), value(l) {}
|
||||
|
||||
friend bool operator<(Tile const& lhs, Tile const& rhs);
|
||||
friend bool operator>(Tile const& lhs, Tile const& rhs);
|
||||
friend bool operator==(Tile const& lhs, Tile const& rhs);
|
||||
};
|
||||
|
||||
bool operator<(Tile const& lhs, Tile const& rhs);
|
||||
bool operator>(Tile const& lhs, Tile const& rhs);
|
||||
bool operator==(Tile const& lhs, Tile const& rhs);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user