Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.15 KB

ComponentAddedHandler_T_(Entity,T).md

File metadata and controls

30 lines (18 loc) · 1.15 KB

ComponentAddedHandler(Entity, T) Delegate

Represents the method that will called when a component of type T is added on an Entity.

public delegate void ComponentAddedHandler<T>(in DefaultEcs.Entity entity, in T value);

Type parameters

T

The type of the component added.

Parameters

entity Entity

The Entity on which the component was added.

value T

The value of the component.