diff options
Diffstat (limited to 'engines/sword2/sword2.h')
-rw-r--r-- | engines/sword2/sword2.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/sword2/sword2.h b/engines/sword2/sword2.h index 172dcea35c..cb2a8d5b80 100644 --- a/engines/sword2/sword2.h +++ b/engines/sword2/sword2.h @@ -122,17 +122,19 @@ private: StartUp _startList[MAX_starts]; -public: - Sword2Engine(OSystem *syst); - ~Sword2Engine(); - +protected: // Engine APIs virtual Common::Error init(); virtual Common::Error go(); virtual GUI::Debugger *getDebugger(); virtual bool hasFeature(EngineFeature f) const; + virtual void syncSoundSettings(); virtual void pauseEngineIntern(bool pause); +public: + Sword2Engine(OSystem *syst); + ~Sword2Engine(); + int getFramesPerSecond(); void registerDefaultSettings(); |