aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/queen.h
diff options
context:
space:
mode:
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;