fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / object / floating_image.hpp
index 0c827fa..db37066 100644 (file)
@@ -36,7 +36,7 @@ public:
   void set_layer(int layer) {
     this->layer = layer;
   }
-  
+
   int get_layer() const {
     return layer;
   }
@@ -47,7 +47,7 @@ public:
   const Vector& get_pos() const {
     return pos;
   }
-  
+
   void set_anchor_point(AnchorPoint anchor) {
     this->anchor = anchor;
   }
@@ -62,6 +62,9 @@ public:
     return visible;
   }
 
+  void set_action(const std::string& action);
+  std::string get_action();
+
   void update(float elapsed_time);
   void draw(DrawingContext& context);
 
@@ -74,4 +77,3 @@ private:
 };
 
 #endif
-