fixed a couple of nolok's minor bugs
[supertux.git] / src / badguy / bouncing_snowball.h
index 5bc7c11..4bb4d86 100644 (file)
@@ -7,6 +7,7 @@ class BouncingSnowball : public BadGuy
 {
 public:
   BouncingSnowball(LispReader& reader);
+  BouncingSnowball(float pos_x, float pos_y, Direction d);
 
   void activate();
   void write(LispWriter& writer);
@@ -14,6 +15,8 @@ public:
 
 protected:
   bool collision_squished(Player& player);
+  bool set_direction;
+  Direction initial_direction;  
 };
 
 #endif