diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-06-18 16:19:32 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-07-21 10:16:14 -0400 |
| commit | b5133e3ee3f75bdca0b4f5ade5e77f506cb4f0c1 (patch) | |
| tree | e0dcf3af58d7c06f906099b69bc44154714ba84e /src/ecs.hpp | |
| parent | 2ecda48bd1cc16b2e5e3e1ebb05098e191121aad (diff) | |
pke: chkpt: add pkev component
Diffstat (limited to 'src/ecs.hpp')
| -rw-r--r-- | src/ecs.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ecs.hpp b/src/ecs.hpp index 436429c..8b4080a 100644 --- a/src/ecs.hpp +++ b/src/ecs.hpp @@ -35,4 +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); +pk_bkt_arr *ECS_GetEvManagers(); + #endif /* PKE_ECS_HPP */ |
