2019-09-02 21:13:24 +00:00
|
|
|
function gameUI::onCreate(%this)
|
2019-08-29 05:22:33 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-02 21:13:24 +00:00
|
|
|
function gameUI::onDestroy(%this)
|
2019-08-29 05:22:33 +00:00
|
|
|
{
|
2019-09-02 21:13:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function gameUI::initServer(%this){}
|
|
|
|
|
|
|
|
|
|
function gameUI::onCreateGameServer(%this){}
|
|
|
|
|
|
|
|
|
|
function gameUI::onDestroyGameServer(%this){}
|
|
|
|
|
|
|
|
|
|
function gameUI::initClient(%this)
|
|
|
|
|
{
|
|
|
|
|
//guis
|
2020-10-05 20:50:45 +00:00
|
|
|
%this.queueExec("./GUIs/playGui.gui");
|
2021-07-20 16:02:38 +00:00
|
|
|
%this.queueExec("./GUIs/playGui");
|
2019-09-02 21:13:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function gameUI::onCreateClientConnection(%this){}
|
|
|
|
|
|
|
|
|
|
function gameUI::onDestroyClientConnection(%this){}
|