summaryrefslogtreecommitdiff
path: root/src/ecs.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ecs.hpp')
-rw-r--r--src/ecs.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ecs.hpp b/src/ecs.hpp
index a777a4a..c6cb42b 100644
--- a/src/ecs.hpp
+++ b/src/ecs.hpp
@@ -20,9 +20,9 @@ void ECS_Tick(double delta);
EntityHandle ECS_CreateEntity(EntityHandle parentEntityHandle = EntityHandle{EntityHandle_T{0xFFFFFFFFFFFFFFFF}});
void ECS_MarkForRemoval(EntityHandle entityHandle);
-CompGrBinds &ECS_CreateGrBinds(EntityHandle entHandle);
-CompGrBinds *ECS_GetGrBinds(EntityHandle entHandle);
+GrBindsComp &ECS_CreateGrBinds(EntityHandle entHandle);
+GrBindsComp *ECS_GetGrBinds(EntityHandle entHandle);
uint64_t ECS_GetGrBinds_BucketCount();
-CompGrBinds *ECS_GetGrBinds(uint64_t bucketIndex, uint64_t &itemCount);
+GrBindsComp *ECS_GetGrBinds(uint64_t bucketIndex, uint64_t &itemCount);
#endif /* PKE_ECS_HPP */