Finished a prototype of Region, needs testing
This commit is contained in:
+1
-3
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user