gameUI.cs 444 B

123456789101112131415161718192021222324
  1. function gameUI::onCreate(%this)
  2. {
  3. }
  4. function gameUI::onDestroy(%this)
  5. {
  6. }
  7. function gameUI::initServer(%this){}
  8. function gameUI::onCreateGameServer(%this){}
  9. function gameUI::onDestroyGameServer(%this){}
  10. function gameUI::initClient(%this)
  11. {
  12. //guis
  13. %this.queueExec("./GUIs/playGui.gui");
  14. %this.queueExec("./GUIs/playGui.cs");
  15. }
  16. function gameUI::onCreateClientConnection(%this){}
  17. function gameUI::onDestroyClientConnection(%this){}