aboutsummaryrefslogtreecommitdiff
path: root/engines/sky/sky.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/sky/sky.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/sky/sky.h')
-rw-r--r--engines/sky/sky.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/sky/sky.h b/engines/sky/sky.h
index 47aebaba77..f3d2e564c8 100644
--- a/engines/sky/sky.h
+++ b/engines/sky/sky.h
@@ -58,7 +58,6 @@ class Debugger;
class SkyCompact;
class SkyEngine : public Engine {
- GUI::Debugger *getDebugger();
protected:
Common::KeyState _keyPressed;
bool _floppyIntro;
@@ -89,15 +88,19 @@ public:
static SystemVars _systemVars;
protected:
+ // Engine APIs
+ virtual int init();
+ virtual int go();
+ virtual GUI::Debugger *getDebugger();
+ virtual bool hasFeature(EngineFeature f) const;
+
byte _fastMode;
void delay(int32 amount);
- int go();
void handleKey(void);
uint32 _lastSaveTime;
- int init();
void initItemList();
void initVirgin();