AGS.Editor.Components.BuildCommandsComponent.guiController_QueryEditorShutdown C# (CSharp) 메소드

guiController_QueryEditorShutdown() 개인적인 메소드

private guiController_QueryEditorShutdown ( ) : bool
리턴 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;
        }