mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 13:14:46 +00:00
24 lines
444 B
C#
24 lines
444 B
C#
function gameUI::onCreate(%this)
|
|
{
|
|
}
|
|
|
|
function gameUI::onDestroy(%this)
|
|
{
|
|
}
|
|
|
|
function gameUI::initServer(%this){}
|
|
|
|
function gameUI::onCreateGameServer(%this){}
|
|
|
|
function gameUI::onDestroyGameServer(%this){}
|
|
|
|
function gameUI::initClient(%this)
|
|
{
|
|
//guis
|
|
%this.queueExec("./GUIs/playGui.gui");
|
|
%this.queueExec("./GUIs/playGui.cs");
|
|
}
|
|
|
|
function gameUI::onCreateClientConnection(%this){}
|
|
|
|
function gameUI::onDestroyClientConnection(%this){} |