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