8template<std::derived_from<FreeComponent> T>
15 template<
class ... Args>
18 world.
Emplace<T>(self, std::forward<Args>(args)...);
24 if(world.Contains<T>(self))
25 world.
Get<T>(self).Run(self, world, dt);
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
InvokeFreeComponent()=default
void operator()(Entity self, ecs::Ecs world, float dt) const
Definition: InvokeFreeComponent.h:22