Skip to content
Snippets Groups Projects
Commit e4365e8c authored by Yoel's avatar Yoel
Browse files

Changed members of AABB to non-const to enable moves and assignments on the AABB-object

parent a2f1efa5
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,6 @@ class AxisAlignedBoundingBox {
Vec3 maxBound() const;
private:
const Vec3 min, max;
Vec3 min, max;
};
} // namespace util
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment