Delegate EntityAction<T1>
- Namespace
- KeenEyes
- Assembly
- KeenEyes.Core.dll
Delegate for processing an entity with one component.
public delegate void EntityAction<T1>(Entity entity, ref T1 c1) where T1 : struct, IComponent
Parameters
entityEntityThe entity being processed.
c1T1A reference to the component instance.
Type Parameters
T1The component type.