summaryrefslogtreecommitdiff
path: root/src/ecs.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-12-21 17:44:03 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-12-23 11:42:23 -0500
commitfa7fc343a0e444da72938fad58d219cf52228976 (patch)
tree24630be0c54f9768a13f32c5970558768e343543 /src/ecs.hpp
parent6fa3b137c74536d2bab77f3309ca5b4c60953fe0 (diff)
plugin checkpoint - multiple plugins and collision callbacks
Diffstat (limited to 'src/ecs.hpp')
-rw-r--r--src/ecs.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ecs.hpp b/src/ecs.hpp
index 7ac08e2..4deacaf 100644
--- a/src/ecs.hpp
+++ b/src/ecs.hpp
@@ -27,6 +27,8 @@ void ECS_MarkForRemoval(EntityHandle entHandle);
uint64_t ECS_GetEntities_BucketCount();
Entity *ECS_GetEntities(uint64_t bucketIndex, uint64_t &itemCount);
+void ECS_HandleCollision(EntityHandle lhs, EntityHandle rhs);
+
CompGrBinds &ECS_CreateGrBinds(EntityHandle entHandle);
CompGrBinds *ECS_GetGrBinds(EntityHandle entHandle);
CompGrBinds *ECS_GetGrBinds(GrBindsHandle grBindsHandle);