Represents the method that will called when a component of type T is removed from an Entity.
public delegate void ComponentChangedHandler<T>(in DefaultEcs.Entity entity, in T oldValue, in T newValue);
T
The type of the component removed.
entity
Entity
The Entity on which the component was changed.
oldValue
T
The previous value of the component.
newValue
T
The new value of the component.