From 2c124c5265e71a7153b620b57f8c04f27929a9c8 Mon Sep 17 00:00:00 2001 From: jonschz Date: Thu, 19 Jun 2025 17:18:28 +0200 Subject: [PATCH] Address review comment --- LEGO1/realtime/roi.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LEGO1/realtime/roi.h b/LEGO1/realtime/roi.h index aa104d3b..bdb584d1 100644 --- a/LEGO1/realtime/roi.h +++ b/LEGO1/realtime/roi.h @@ -39,10 +39,13 @@ class BoundingSphere { // FUNCTION: BETA10 0x1001fac0 const Vector3& Center() const { return center; } + // FUNCTION: BETA10 0x100d55a0 Vector3& Center() { return center; } + // FUNCTION: BETA10 0x1001fd30 const float& Radius() const { return radius; } + // FUNCTION: BETA10 0x1001fae0 float& Radius() { return radius; }