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