Class AppEventListenerBase
Base class for all AppEventListener components.
Namespace: ScriptableFramework
Assembly: cs.temp.dll.dll
Syntax
public abstract class AppEventListenerBase : MonoBehaviour
Methods
OnEventRaised()
Invokes all delegates asigned to this response in the inspector.
Declaration
public abstract bool OnEventRaised()
Returns
Type | Description |
---|---|
System.Boolean | Returns whether the event response was successful or not. |
RegisterSelf()
If Event
is not null, register this object to it.
Declaration
public abstract bool RegisterSelf()
Returns
Type | Description |
---|---|
System.Boolean | Returns whether the registration was successful or not. |
UnregisterSelf()
If Event
is not null, unregister this object from it.
Declaration
public abstract bool UnregisterSelf()
Returns
Type | Description |
---|---|
System.Boolean | Returns whether the unregistration was successful or not. |