Relocates several game specific GUIs (with relevant art and scripts) out of the "core".

This commit is contained in:
thecelloman 2013-03-20 12:10:08 -04:00
parent 5094eb5930
commit c1831e4bd8
34 changed files with 26 additions and 32 deletions

View file

@ -72,10 +72,17 @@ function initClient()
// Load up the shell GUIs
exec("art/gui/mainMenuGui.gui");
exec("art/gui/StartupGui.gui");
exec("art/gui/chooseLevelDlg.gui");
exec("art/gui/loadingGui.gui");
exec("art/gui/optionsDlg.gui");
exec("art/gui/remapDlg.gui");
// Gui scripts
exec("scripts/gui/playGui.cs");
exec("scripts/gui/startupGui.cs");
exec("scripts/gui/chooseLevelDlg.cs");
exec("scripts/gui/loadingGui.cs");
exec("scripts/gui/optionsDlg.cs");
// Client scripts
exec("./missionDownload.cs");