AGS.Editor.GUIController.StartGUI C# (CSharp) Method

StartGUI() public method

public StartGUI ( string commandLineArguments ) : void
commandLineArguments string
return void
        public void StartGUI(string[] commandLineArguments)
        {
            _commandLineArgs = commandLineArguments;
            _messageLoopStarted = true;
            Application.Run(_mainForm);
        }
GUIController