diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-01 14:07:36 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-06 17:24:27 -0400 |
| commit | 08ff9cd0e2b754caf60aaceedf670b9e6b61d664 (patch) | |
| tree | f326d228839528cb3c61197073960af3f3c51bed /src/ecs.hpp | |
| parent | b9f90793c8c0468d5f35d7af976a6e3bcd206aad (diff) | |
bucket cleanup
Diffstat (limited to 'src/ecs.hpp')
| -rw-r--r-- | src/ecs.hpp | 6 |
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 */ |
