Represents the method that will called when a component of type T is enabled on an Entity.
public delegate void ComponentEnabledHandler<T>(in DefaultEcs.Entity entity, in T value);
T
The type of the component enabled.
entity
Entity
The Entity on which the component was enabled.
value
T
The value of the component.