aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parallaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/parallaction/parallaction.h')
-rw-r--r--engines/parallaction/parallaction.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/parallaction/parallaction.h b/engines/parallaction/parallaction.h
index d7add635cd..b1baa28530 100644
--- a/engines/parallaction/parallaction.h
+++ b/engines/parallaction/parallaction.h
@@ -227,7 +227,9 @@ public:
Parallaction(OSystem *syst, const PARALLACTIONGameDescription *gameDesc);
~Parallaction();
- int init();
+ // Engine APIs
+ virtual int init();
+ virtual bool hasFeature(EngineFeature f) const;
// info
int32 _screenWidth;
@@ -360,8 +362,9 @@ public:
Parallaction_ns(OSystem* syst, const PARALLACTIONGameDescription *gameDesc) : Parallaction(syst, gameDesc) { }
~Parallaction_ns();
- int init();
- int go();
+ // Engine APIs
+ virtual int init();
+ virtual int go();
public:
virtual void parseLocation(const char *filename);