Rolled back bomb to old behaviour, some bomb gfx tuning
[supertux.git] / src / badguy / fish.hpp
index 117d1d5..fa36dee 100644 (file)
@@ -37,13 +37,17 @@ public:
   void write(lisp::Writer& );
   void active_update(float);
 
+  void freeze();
+  void unfreeze();
+  bool is_freezable() const;
+
   virtual Fish* clone() const { return new Fish(*this); }
 
 private:
   HitResponse hit(const CollisionHit& );
   void start_waiting();
   void jump();
-  
+
   Timer waiting;
   float stop_y; /**< y-coordinate to stop at */
 };