Vertices Engine
v1.9.2.92
A Cross Platform game engine developed by Virtex Edge Design.
|
Interface for debug command host. More...
Public Member Functions | |
void | RegisterCommand (string command, string description, DebugCommandExecute callback) |
Register new command. | |
void | UnregisterCommand (string command) |
Unregister command. | |
void | Echo (string text) |
Output Standard message. | |
void | EchoCMD (string text) |
void | RegisterEchoListner (IDebugEchoListner listner) |
Register message listener. | |
void | UnregisterEchoListner (IDebugEchoListner listner) |
Unregister message listener. | |
void | PushExecutioner (IDebugCommandExecutioner executioner) |
Add Command executioner. | |
void | PopExecutioner () |
Remote Command executioner. | |
Public Member Functions inherited from VerticesEngine.Diagnostics.IDebugEchoListner | |
void | Echo (DebugCommandMessage messageType, string text) |
Output message. | |
Public Member Functions inherited from VerticesEngine.Diagnostics.IDebugCommandExecutioner | |
void | ExecuteCommand (string command, bool IsCmdLine=false) |
Execute command. | |
Interface for debug command host.
void VerticesEngine.Diagnostics.IDebugCommandHost.Echo | ( | string | text | ) |
Output Standard message.
text |
Implemented in VerticesEngine.Diagnostics.vxDebugCommandUI.
void VerticesEngine.Diagnostics.IDebugCommandHost.PopExecutioner | ( | ) |
Remote Command executioner.
Implemented in VerticesEngine.Diagnostics.vxDebugCommandUI.
void VerticesEngine.Diagnostics.IDebugCommandHost.PushExecutioner | ( | IDebugCommandExecutioner | executioner | ) |
Add Command executioner.
Implemented in VerticesEngine.Diagnostics.vxDebugCommandUI.
void VerticesEngine.Diagnostics.IDebugCommandHost.RegisterCommand | ( | string | command, |
string | description, | ||
DebugCommandExecute | callback ) |
Register new command.
command | command name |
description | description of command |
callback | Execute delegation |
Implemented in VerticesEngine.Diagnostics.vxDebugCommandUI.
void VerticesEngine.Diagnostics.IDebugCommandHost.RegisterEchoListner | ( | IDebugEchoListner | listner | ) |
Register message listener.
listner |
Implemented in VerticesEngine.Diagnostics.vxDebugCommandUI.
void VerticesEngine.Diagnostics.IDebugCommandHost.UnregisterCommand | ( | string | command | ) |
Unregister command.
command | command name |
Implemented in VerticesEngine.Diagnostics.vxDebugCommandUI.
void VerticesEngine.Diagnostics.IDebugCommandHost.UnregisterEchoListner | ( | IDebugEchoListner | listner | ) |
Unregister message listener.
listner |
Implemented in VerticesEngine.Diagnostics.vxDebugCommandUI.