Torque3D/Templates/BaseGame/game/data/gameUI/gameUI.cs

24 lines
422 B
C#
Raw Normal View History

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
exec("./GUIs/playGui.gui");
exec("./GUIs/playGui.cs");
}
function gameUI::onCreateClientConnection(%this){}
function gameUI::onDestroyClientConnection(%this){}