updated dispenser -- can summon mriceblock, snowball, bouncing_snowball and mrbomb now
[supertux.git] / src / badguy / mriceblock.h
index 3b91690..7275c0e 100644 (file)
@@ -7,6 +7,7 @@ class MrIceBlock : public BadGuy
 {
 public:
   MrIceBlock(LispReader& reader);
+  MrIceBlock(float pos_x, float pos_y, Direction d);
 
   void activate();
   void write(LispWriter& writer);
@@ -26,6 +27,8 @@ private:
   IceState ice_state;
   Timer2 flat_timer;
   int squishcount;
+  bool set_direction;
+  Direction initial_direction;  
 };
 
 #endif