diff options
author | nathan <nathansmith@disroot.org> | 2025-08-08 18:48:10 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-08-08 18:48:10 +0000 |
commit | e5acfb329827802fe2259f91701dc8762c2573b6 (patch) | |
tree | 8d461b2d0e1864633341d066f783172790c62dc9 /src/world.h | |
parent | 94ca30b13bffe1f02313b7fd32b2320e5c490fa5 (diff) | |
download | FindThings-e5acfb329827802fe2259f91701dc8762c2573b6.tar.gz FindThings-e5acfb329827802fe2259f91701dc8762c2573b6.tar.bz2 FindThings-e5acfb329827802fe2259f91701dc8762c2573b6.zip |
Mesh instancing test working
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/world.h b/src/world.h index fc84ca3..21e4c4c 100644 --- a/src/world.h +++ b/src/world.h @@ -58,12 +58,12 @@ struct World { BVHNode bvh; // Transforms for mesh instancing. - Matrix utilityPoleTransforms[WORLD_UTILITY_POLE_COUNT]; + Matrix* utilityPoleTransforms; int bvhDebugSelect; }; -World createWorld(Seed seed); +World createWorld(Seed seed, const Assets* assets); void updateWorld(World* world, Game* game); void freeWorld(World world); // Dam, I wanta live in a free world ): |