aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.h')
-rw-r--r--src/world.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/world.h b/src/world.h
index 1d7dd72..fc84ca3 100644
--- a/src/world.h
+++ b/src/world.h
@@ -52,9 +52,13 @@ struct World {
Vector3 size;
Texture heightmapTexture;
Model heightmap;
+
Entity entities[WORLD_ENTITY_MAX];
- BVHNode bvh;
WorldUID places[WORLD_PLACE_COUNT];
+ BVHNode bvh;
+
+ // Transforms for mesh instancing.
+ Matrix utilityPoleTransforms[WORLD_UTILITY_POLE_COUNT];
int bvhDebugSelect;
};