summaryrefslogtreecommitdiff
path: root/src/ecs.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ecs.hpp')
-rw-r--r--src/ecs.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ecs.hpp b/src/ecs.hpp
index e66bfb4..20f7444 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 *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();
+pke_component_event *ECS_CreateEv(Entity_Base *entity, pk_uuid uuid);
+pke_component_event *ECS_GetEv(PkeEventHandle handle);
+void ECS_GetEvs(Entity_Base *entity, pk_arr_t<pke_component_event *> &arr);
+pk_bkt_arr *ECS_GetEvs();
#endif /* PKE_ECS_HPP */