aboutsummaryrefslogtreecommitdiff
path: root/engines/neverhood/neverhood.h
diff options
context:
space:
mode:
authorjohndoe1232013-01-06 22:41:04 +0000
committerWillem Jan Palenstijn2013-05-08 20:47:38 +0200
commit0f1aa64fd0172c374c491bcfba4ac7baa2394d2e (patch)
tree491212c167cf2f25dca8dadab0574701cac7a814 /engines/neverhood/neverhood.h
parent060287a4f85189cce3bb3b1b864b85cd81ee5c2f (diff)
downloadscummvm-rg350-0f1aa64fd0172c374c491bcfba4ac7baa2394d2e.tar.gz
scummvm-rg350-0f1aa64fd0172c374c491bcfba4ac7baa2394d2e.tar.bz2
scummvm-rg350-0f1aa64fd0172c374c491bcfba4ac7baa2394d2e.zip
NEVERHOOD: Add support for the demo version
- Remove debug resource dumping code - Fix Scene1501 (pictures without sound weren't displayed/too fast) - Move main loop to mainLoop method
Diffstat (limited to 'engines/neverhood/neverhood.h')
-rw-r--r--engines/neverhood/neverhood.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/neverhood/neverhood.h b/engines/neverhood/neverhood.h
index a66bdb3dd7..b0f9abb2e2 100644
--- a/engines/neverhood/neverhood.h
+++ b/engines/neverhood/neverhood.h
@@ -59,6 +59,7 @@ class NeverhoodEngine : public ::Engine {
protected:
Common::Error run();
+ void mainLoop();
public:
NeverhoodEngine(OSystem *syst, const NeverhoodGameDescription *gameDesc);
@@ -71,6 +72,7 @@ public:
uint16 getVersion() const;
Common::Platform getPlatform() const;
bool hasFeature(EngineFeature f) const;
+ bool isDemo() const;
Common::RandomSource *_rnd;
@@ -130,8 +132,6 @@ public:
int16 getMouseY() const { return _mouseY; }
NPoint getMousePos();
- void dumpAllResources();
-
public:
};