Torque3D/Templates/BaseGame/game/data/gameUI/gameUI.tscript
2021-01-19 21:32:31 +01:00

24 lines
471 B
Plaintext

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." @ $TorqueScriptFileExtension);
}
function gameUI::onCreateClientConnection(%this){}
function gameUI::onDestroyClientConnection(%this){}