NScumm.Sky.SkyEngine.QuitGame C# (CSharp) Method

QuitGame() public static method

public static QuitGame ( ) : void
return void
        public static void QuitGame()
        {
            _hasToQuit = true;
        }

Usage Example

Esempio n. 1
0
        private bool FnLeaveSection(uint sectionNo, uint b, uint c)
        {
            if (SkyEngine.IsDemo)
            {
                SkyEngine.QuitGame();
            }

            if (sectionNo == 5) //linc section - has different mouse icons
            {
                _skyMouse.ReplaceMouseCursors(60301);
            }

            return(true);
        }
All Usage Examples Of NScumm.Sky.SkyEngine::QuitGame