summaryrefslogtreecommitdiff
path: root/src/ecs.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-07-17 11:51:15 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-07-21 10:16:14 -0400
commitc26b28fcea88821f650696f380d2047ea5c2272e (patch)
treeaa238b8e037deb1f4b611656a65a0941910a4c16 /src/ecs.hpp
parentb5133e3ee3f75bdca0b4f5ade5e77f506cb4f0c1 (diff)
pke: event component rename + global manager
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 8b4080a..e66bfb4 100644
--- a/src/ecs.hpp
+++ b/src/ecs.hpp
@@ -35,9 +35,9 @@ void ECS_GetInstances(Entity_Base *entity, pk_arr_t<CompInstance *> &arr);
void ECS_UpdateInstance(CompInstance *instance, const InstPos &instPos, bool overridePhysics = false);
pk_bkt_arr *ECS_GetInstances();
-pke_component_event_manager *ECS_CreateEvManager(Entity_Base *entity, pk_uuid uuid);
-pke_component_event_manager *ECS_GetEvManager(PkeEventMgrHandle handle);
-void ECS_GetEvManagers(Entity_Base *entity, pk_arr_t<pke_component_event_manager *> &arr);
+pke_component_event *ECS_CreateEvManager(Entity_Base *entity, pk_uuid uuid);
+pke_component_event *ECS_GetEvManager(PkeEventMgrHandle handle);
+void ECS_GetEvManagers(Entity_Base *entity, pk_arr_t<pke_component_event *> &arr);
pk_bkt_arr *ECS_GetEvManagers();
#endif /* PKE_ECS_HPP */