aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/queen.h
diff options
context:
space:
mode:
authorMax Horn2008-11-04 16:11:40 +0000
committerMax Horn2008-11-04 16:11:40 +0000
commit61aadb378d654425d55b8cf9f91df4283b46de7e (patch)
treec087a5576ecc7f707abd68c596cf5d0955708e91 /engines/queen/queen.h
parent70679e68951789f70f57a8b900b51b3cf52979b1 (diff)
downloadscummvm-rg350-61aadb378d654425d55b8cf9f91df4283b46de7e.tar.gz
scummvm-rg350-61aadb378d654425d55b8cf9f91df4283b46de7e.tar.bz2
scummvm-rg350-61aadb378d654425d55b8cf9f91df4283b46de7e.zip
Fixed the EngineFeature vs. MetaEngineFeature mess, clarified some EngineFeature comments
svn-id: r34896
Diffstat (limited to 'engines/queen/queen.h')
-rw-r--r--engines/queen/queen.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/engines/queen/queen.h b/engines/queen/queen.h
index 01d6340abb..dcfc7b07a5 100644
--- a/engines/queen/queen.h
+++ b/engines/queen/queen.h
@@ -97,7 +97,6 @@ public:
void checkOptionSettings();
void readOptionSettings();
void writeOptionSettings();
- virtual void syncSoundSettings();
int talkSpeed() const { return _talkSpeed; }
void talkSpeed(int speed) { _talkSpeed = speed; }
@@ -129,10 +128,12 @@ public:
protected:
- GUI::Debugger *getDebugger();
-
- int go();
- int init();
+ // Engine APIs
+ virtual int init();
+ virtual int go();
+ virtual GUI::Debugger *getDebugger();
+ virtual bool hasFeature(EngineFeature f) const;
+ virtual void syncSoundSettings();
int _talkSpeed;