Interface IEventBinder<T>
Implementations of this interface will be bound to an IBindableEvent<T>.
It provides communication between the unity components and bindable event in a
Namespace: FastenUp.Runtime.Binders.Events
Assembly: cs.temp.dll.dll
Syntax
public interface IEventBinder<in T> : IBinder
Type Parameters
Name | Description |
---|---|
T |
Methods
AddListener(T)
Declaration
void AddListener(T action)
Parameters
Type | Name | Description |
---|---|---|
T | action |
RemoveListener(T)
Declaration
void RemoveListener(T action)
Parameters
Type | Name | Description |
---|---|---|
T | action |