After some testing Region seems OK

This commit is contained in:
Kayne Ruse
2013-09-19 22:52:26 +10:00
parent 9b64c67068
commit 9cbbfe77b7
3 changed files with 10 additions and 9 deletions
+4 -4
View File
@@ -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