From 7f5f9c9f91eb8cd52ebcffe208d0e778f8ff6448 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Sat, 3 Sep 2011 17:24:34 +0200 Subject: GOB: Stub classes for Geisha's Diving and Penetration minigames --- engines/gob/inter.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'engines/gob/inter.h') 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 ¶ms); int16 loadSound(int16 slot); + +private: + Geisha::Diving *_diving; + Geisha::Penetration *_penetration; }; class Inter_v2 : public Inter_v1 { -- cgit v1.2.3