Finished a prototype of Region, needs testing

This commit is contained in:
Kayne Ruse
2013-09-19 16:52:15 +10:00
parent de0227a1cf
commit 9b64c67068
5 changed files with 273 additions and 24 deletions
+1 -3
View File
@@ -28,9 +28,7 @@ struct Tile {
int value;
Tile() = default;
Tile(int i, int j, int k, int l) : x(i), y(j), depth(k), value(l) {
//
}
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);