This commit is contained in:
jonschz 2025-06-21 07:42:59 +02:00
parent c854ca0ba4
commit 43926648c9

View File

@ -19,9 +19,12 @@ class BoundingBox {
// FUNCTION: BETA10 0x1004a7a0
const Vector3& Min() const { return min; }
Vector3& Min() { return min; }
// FUNCTION: BETA10 0x1004a7c0
const Vector3& Max() const { return max; }
Vector3& Max() { return max; }
private: