diff options
Diffstat (limited to 'engines/engine.h')
-rw-r--r-- | engines/engine.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/engine.h b/engines/engine.h index 6918d14cd5..4be5527a8c 100644 --- a/engines/engine.h +++ b/engines/engine.h @@ -61,8 +61,8 @@ protected: Common::SaveFileManager *_saveFileMan; Dialog *_mainMenuDialog; + virtual int runDialog(Dialog &dialog); - virtual int runDialog(Dialog &dialog); const Common::String _targetName; // target name for saves const Common::String _gameDataPath; @@ -125,8 +125,15 @@ public: */ bool isPaused() const { return _pauseLevel != 0; } + + /** Run the Global Main Menu Dialog + */ void mainMenuDialog(); + /** Sync the engine's sound settings with the config manager + */ + virtual void syncSoundSettings(); + public: /** Setup the backend's graphics mode. */ |