From 43926648c96888ca5cdc806c9c8bd374047449f4 Mon Sep 17 00:00:00 2001 From: jonschz Date: Sat, 21 Jun 2025 07:42:59 +0200 Subject: [PATCH] Cleanup --- LEGO1/realtime/roi.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LEGO1/realtime/roi.h b/LEGO1/realtime/roi.h index bdb584d1..dd5b9993 100644 --- a/LEGO1/realtime/roi.h +++ b/LEGO1/realtime/roi.h @@ -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: