aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter.h
diff options
context:
space:
mode:
authorSven Hesse2011-09-03 17:24:34 +0200
committerSven Hesse2011-09-03 18:00:09 +0200
commit7f5f9c9f91eb8cd52ebcffe208d0e778f8ff6448 (patch)
tree88a0a8c06121df4c17a62e79bf67b08f87ea6d68 /engines/gob/inter.h
parent26dd2f5f603b10b3b54664b6589c8feb6c4f7b82 (diff)
downloadscummvm-rg350-7f5f9c9f91eb8cd52ebcffe208d0e778f8ff6448.tar.gz
scummvm-rg350-7f5f9c9f91eb8cd52ebcffe208d0e778f8ff6448.tar.bz2
scummvm-rg350-7f5f9c9f91eb8cd52ebcffe208d0e778f8ff6448.zip
GOB: Stub classes for Geisha's Diving and Penetration minigames
Diffstat (limited to 'engines/gob/inter.h')
-rw-r--r--engines/gob/inter.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/engines/gob/inter.h b/engines/gob/inter.h
index d1c28fcb2f..6fd4dc2187 100644
--- a/engines/gob/inter.h
+++ b/engines/gob/inter.h
@@ -33,6 +33,11 @@
namespace Gob {
+namespace Geisha {
+ class Diving;
+ class Penetration;
+}
+
// This is to help devices with small memory (PDA, smartphones, ...)
// to save a bit of memory used by opcode names in the Gob engine.
#ifndef REDUCE_MEMORY_USAGE
@@ -337,7 +342,7 @@ protected:
class Inter_Geisha : public Inter_v1 {
public:
Inter_Geisha(GobEngine *vm);
- virtual ~Inter_Geisha() {}
+ virtual ~Inter_Geisha();
protected:
virtual void setupOpcodesDraw();
@@ -362,6 +367,10 @@ protected:
void oGeisha_caress2(OpGobParams &params);
int16 loadSound(int16 slot);
+
+private:
+ Geisha::Diving *_diving;
+ Geisha::Penetration *_penetration;
};
class Inter_v2 : public Inter_v1 {