Dispenser no longer hurts Tux directly. Tux can climb on it.
[supertux.git] / src / badguy / dispenser.hpp
index e553d54..38a26fe 100644 (file)
@@ -41,10 +41,14 @@ public:
 
 protected:
   bool collision_squished(GameObject& object);
+  HitResponse collision(GameObject& other, const CollisionHit& hit);
   void launch_badguy();
   float cycle;
   std::string badguy;
   Timer dispense_timer;
+  bool autotarget;
+  bool swivel;
+  bool broken;
 };
 
 #endif