Interface IOverlayManager
Assembly: NFive.SDK.Client.net.dll
Syntax
public interface IOverlayManager
Properties
|
Improve this Doc
View Source
Plugin
Declaration
Property Value
Methods
|
Improve this Doc
View Source
Emit(String, Object)
Declaration
void Emit(string event, object data = null)
Parameters
|
Improve this Doc
View Source
Focus(Boolean, Boolean)
Declaration
void Focus(bool hasFocus, bool showCursor)
Parameters
|
Improve this Doc
View Source
On(String, Action)
Declaration
void On(string event, Action action)
Parameters
|
Improve this Doc
View Source
On<T>(String, Action<T>)
Declaration
void On<T>(string event, Action<T> action)
Parameters
Type Parameters
|
Improve this Doc
View Source
On<TReturn>(String, Func<TReturn>)
Declaration
void On<TReturn>(string event, Func<TReturn> action)
Parameters
Type |
Name |
Description |
String |
event |
|
Func<TReturn> |
action |
|
Type Parameters
|
Improve this Doc
View Source
On<T, TReturn>(String, Func<T, TReturn>)
Declaration
void On<T, TReturn>(string event, Func<T, TReturn> action)
Parameters
Type |
Name |
Description |
String |
event |
|
Func<T, TReturn> |
action |
|
Type Parameters
Name |
Description |
T |
|
TReturn |
|