ComponentAddedHandler_T_(Entity,T).md

March 19, 2022 ยท View on GitHub

DefaultEcs

DefaultEcs

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.

Contents

  1. 0.1DefaultEcs
  2. 1ComponentAddedHandler(Entity, T) Delegate