From 6641664d5218a6d9b4c120d539e7ac33d261ef99 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 16 Jul 2025 00:45:37 -0600 Subject: WHYYYY --- src/world.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/world.h') diff --git a/src/world.h b/src/world.h index 16e6dbf..3f167f8 100644 --- a/src/world.h +++ b/src/world.h @@ -21,11 +21,12 @@ typedef int16_t WorldUID; typedef struct BVHNode { + int8_t level; BoundingBox box; Vector3 position; WorldUID entities[BVH_MAX]; // Only for leafs. struct BVHNode* branches[BVH_MAX_BRANCH_COUNT]; - int branchCount; + int8_t branchCount; } BVHNode; typedef struct { -- cgit v1.2.3