diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-07-31 15:15:16 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-07-31 15:15:16 -0400 |
| commit | f7d860cee74ad3b94e0d15ea157783b7760f6d55 (patch) | |
| tree | c2d37ae18a4ce1a63da4010516ecc588bfb7903a /src/ecs.hpp | |
| parent | 8dbacba532e05d76325392d85a75906f2de12350 (diff) | |
pke-ui: detect mouse clicks, other small refactors
Diffstat (limited to 'src/ecs.hpp')
| -rw-r--r-- | src/ecs.hpp | 8 |
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 */ |
