Big CMakeLists update.
[supertux.git] / src / scripting / floating_image.hpp
index 42dcf36..7fd9206 100644 (file)
@@ -23,6 +23,7 @@
 #ifndef SCRIPTING_API
 #define __suspend
 #include <string>
+#include "ref.hpp"
 
 class FloatingImage;
 typedef FloatingImage _FloatingImage;
@@ -46,14 +47,17 @@ public:
   int get_anchor_point();
   void set_visible(bool visible);
   bool get_visible();
-  
+  void set_action(const std::string& action);
+  std::string get_action();
+  void fade_in(float fadetime);
+  void fade_out(float fadetime);
+
 #ifndef SCRIPTING_API
 private:
-  _FloatingImage* floating_image;
+  Ref<_FloatingImage> floating_image;
 #endif
 };
 
 }
 
 #endif
-