AGS.Editor.Components.BuildCommandsComponent.guiController_QueryEditorShutdown C# (CSharp) Method

guiController_QueryEditorShutdown() private method

private guiController_QueryEditorShutdown ( ) : bool
return bool
        private bool guiController_QueryEditorShutdown()
        {
            if (_testGameInProgress)
            {
                _guiController.ShowMessage("You can't close the editor while testing your game. Quit the game first.", MessageBoxIcon.Warning);
                return false;
            }
            return true;
        }