Completed airflower powerup abilities.
[supertux.git] / src / badguy / owl.hpp
index ae441b0..83b38b9 100644 (file)
@@ -29,6 +29,11 @@ public:
 
   void initialize();
   void collision_solid(const CollisionHit& hit);
+  void kill_fall();
+
+  void freeze();
+  void unfreeze();
+  bool is_freezable() const;
 
 protected:
   bool is_above_player (void);
@@ -37,6 +42,10 @@ protected:
 
   std::string carried_obj_name;
   Portable *carried_object;
+
+private:
+  Owl(const Owl&);
+  Owl& operator=(const Owl&);
 };
 
 #endif /* HEADER_SUPERTUX_BADGUY_OWL_HPP */