qmax patch to fix bug #0000389 - colors in infoblocks
[supertux.git] / src / badguy / dispenser.hpp
index 95b5cad..1066078 100644 (file)
@@ -41,12 +41,17 @@ public:
 
 protected:
   bool collision_squished(GameObject& object);
+  HitResponse collision(GameObject& other, const CollisionHit& hit);
   void launch_badguy();
   float cycle;
-  std::string badguy;
+  std::vector<std::string> badguys;
+  unsigned int next_badguy;
   Timer dispense_timer;
   bool autotarget;
   bool swivel;
+  bool broken;
+  bool random;
+  std::string type;
 };
 
 #endif