From f2c808b1235b9d76e4d4753c025f404e7736ca3c Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Tue, 31 Oct 2023 12:46:09 -0400 Subject: use model for collision + refactor physics init and rigidbody creation --- src/ecs.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ecs.hpp') diff --git a/src/ecs.hpp b/src/ecs.hpp index 4a10b3a..480ba0c 100644 --- a/src/ecs.hpp +++ b/src/ecs.hpp @@ -32,7 +32,7 @@ CompGrBinds *ECS_GetGrBinds(EntityHandle entHandle); uint64_t ECS_GetGrBinds_BucketCount(); CompGrBinds *ECS_GetGrBinds(uint64_t bucketIndex, uint64_t &itemCount); -CompInstance &ECS_CreateInstance(EntityHandle entHandle, EntityHandle entityTypeEntityHandle, const InstPos &instPos); +CompInstance &ECS_CreateInstance(EntityHandle entHandle, EntityHandle entityTypeEntityHandle); CompInstance *ECS_GetInstance(EntityHandle entHandle); void ECS_UpdateInstance(EntityHandle entHandle, const InstPos &instPos, bool overridePhysics = false); uint64_t ECS_GetInstances_BucketCount(); -- cgit v1.2.3