Delegate EventChannel<T0, T1, T2, T3>.EventHandlerDelegate
Represents the method that will handle events with one parameters of types T0, T1, T2 and T3.
Namespace: Unity.Behavior
Assembly: Unity.Behavior.dll
Syntax
public delegate void EventChannel<T0, T1, T2, T3>.EventHandlerDelegate(T0 value0, T1 value1, T2 value2, T3 value3)
Parameters
| Type | Name | Description |
|---|---|---|
| T0 | value0 | The first parameter value provided when the event is raised. |
| T1 | value1 | The second parameter value provided when the event is raised. |
| T2 | value2 | The third parameter value provided when the event is raised. |
| T3 | value3 | The fourth parameter value provided when the event is raised. |