aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/mixer.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/mixer.h')
-rw-r--r--engines/cge/mixer.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/cge/mixer.h b/engines/cge/mixer.h
index 81bc7c7cdf..d589aceaea 100644
--- a/engines/cge/mixer.h
+++ b/engines/cge/mixer.h
@@ -48,10 +48,12 @@ class MIXER : public SPRITE {
void Update(void);
public:
static bool Appear;
- MIXER(int x, int y);
- ~MIXER(void);
+ MIXER(CGEEngine *vm, int x, int y);
+ ~MIXER();
void Touch(uint16 mask, int x, int y);
- void Tick(void);
+ void Tick();
+private:
+ CGEEngine *_vm;
};
} // End of namespace CGE