aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/pingo2.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/pingo2.h')
-rw-r--r--engines/avalanche/pingo2.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/engines/avalanche/pingo2.h b/engines/avalanche/pingo2.h
index 10b9511f5e..135bb10c20 100644
--- a/engines/avalanche/pingo2.h
+++ b/engines/avalanche/pingo2.h
@@ -31,11 +31,17 @@
#define PINGO2_H
#include "common/scummsys.h"
+#include "common/str.h"
+
+
namespace Avalanche {
+class AvalancheEngine;
- namespace Pingo {
+class Pingo {
+public:
+ void setParent(AvalancheEngine *vm);
void bosskey();
@@ -51,7 +57,13 @@ namespace Avalanche {
void winning_pic();
- } // End of namespace Pingo.
+private:
+ AvalancheEngine *_vm;
+
+ void dplot(int16 x, int16 y, Common::String z);
+
+ void zl(int16 x1, int16 y1, int16 x2, int16 y2);
+};
} // End of namespace Avalanche.