diff options
Diffstat (limited to 'src/entities.hpp')
| -rw-r--r-- | src/entities.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entities.hpp b/src/entities.hpp index 4c5b498..f45f7d3 100644 --- a/src/entities.hpp +++ b/src/entities.hpp @@ -9,6 +9,7 @@ #include "memory.hpp" #include "window.hpp" +#include <BulletCollision/CollisionShapes/btCollisionShape.h> #include <vulkan/vulkan_core.h> struct EntityType { @@ -30,6 +31,9 @@ struct EntityType { int16_t AccessorIndexUV = -1; int16_t AccessorIndexIndex = -1; } Importer_GLTF; + struct { + btCollisionShape *shape = nullptr; + } bt; }; extern DynArray<EntityType> GlobalEntityTypes; |
