Fixed problems with Rockets and Cannons sometimes reversing direction on
[supertux.git] / src / badguy / darttrap.hpp
index 09ac5fd..b891de4 100644 (file)
@@ -46,15 +46,12 @@ protected:
   void load(); /**< load a shot */
   void fire(); /**< fire a shot */
   
-  bool set_direction;
-  Direction initial_direction;  
   float initial_delay; /**< time to wait before firing first shot */
   float fire_delay; /**< reload time */
   int ammo; /**< ammo left (-1 means unlimited) */
 
   State state; /**< current state */
   Timer fire_timer; /**< time until new shot is fired */
-  std::string direction;
 };
 
 #endif