NcEngine
InvokeFreeComponent.h
1#pragma once
2
4
5namespace nc
6{
8template<std::derived_from<FreeComponent> T>
10{
13
15 template<class ... Args>
16 InvokeFreeComponent(Entity self, ecs::Ecs world, Args&&... args)
17 {
18 world.Emplace<T>(self, std::forward<Args>(args)...);
19 }
20
22 void operator()(Entity self, ecs::Ecs world, float dt) const
23 {
24 if(world.Contains<T>(self))
25 world.Get<T>(self).Run(self, world, dt);
26 }
27};
28} // namespace nc
Identifies an object in the registry.
Definition: Entity.h:18
Interface for higher-level entity and component operations with optional type access restriction.
Definition: Ecs.h:18
::template HasAccess< T > auto Get(Entity entity) -> T &
Get a component.
Definition: Ecs.h:102
::template HasAccess< Entity, Transform, Tag, Hierarchy > auto Emplace(EntityInfo info={}) -> Entity
Emplace an entity.
Definition: Ecs.h:38
Definition: InvokeFreeComponent.h:10
InvokeFreeComponent(Entity self, ecs::Ecs world, Args &&... args)
Definition: InvokeFreeComponent.h:16
void operator()(Entity self, ecs::Ecs world, float dt) const
Definition: InvokeFreeComponent.h:22