135136137138139140141142143144145
Model.getSingleton().init(); Model.getSingleton().getOptionsParam().setGUI(cmdLine.isGUI()); if (Model.getSingleton().getOptionsParam().isGUI()) { runGUI(); aboutWindow.dispose(); } else { runCommandLine(); } }
148149150151152153154155156157158
if (Model.getSingleton().getOptionsParam().isGUI()) { runGUI(); if (showSplash) { aboutWindow.dispose(); } } else { runCommandLine(); }