aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/game.h')
-rw-r--r--engines/cge/game.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/engines/cge/game.h b/engines/cge/game.h
index 88ef4344ba..4d5acf7371 100644
--- a/engines/cge/game.h
+++ b/engines/cge/game.h
@@ -32,17 +32,20 @@
namespace CGE {
+enum {
+ kFlyL = 20,
+ kFlyT = 40,
+ kFlyR = 110,
+ kFlyB = 100
+};
+
class Fly : public Sprite {
- static const int _l;
- static const int _t;
- static const int _r;
- static const int _b;
+private:
+ CGEEngine *_vm;
public:
int _tx, _ty;
Fly(CGEEngine *vm, Bitmap **shpl);
void tick();
-private:
- CGEEngine *_vm;
};
} // End of namespace CGE