diff options
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 6 |
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; }; |