From cc32c1bf9105189d89a89ad7d2bf347fb2117331 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Tue, 25 Jun 2024 19:50:26 +0300 Subject: [PATCH] box size getter --- box.h | 1 + 1 file changed, 1 insertion(+) diff --git a/box.h b/box.h index c6b3bd0..96c7e1d 100755 --- a/box.h +++ b/box.h @@ -8,6 +8,7 @@ namespace vb01{ public: Box(Vector3); void setSize(Vector3); + inline Vector3 getSize(){return size;} private: Vector3 size; };