mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-17 05:33:47 +00:00
14 lines
197 B
C#
14 lines
197 B
C#
|
|
function gameUI::create( %this )
|
||
|
|
{
|
||
|
|
if (!$Server::Dedicated)
|
||
|
|
{
|
||
|
|
//guis
|
||
|
|
exec("./GUIs/playGui.gui");
|
||
|
|
exec("./GUIs/playGui.cs");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function gameUI::destroy( %this )
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|