#303: Typo fixes from mathnerd314
[supertux.git] / src / scripting / floating_image.hpp
index 78f39df..7fd9206 100644 (file)
@@ -23,6 +23,7 @@
 #ifndef SCRIPTING_API
 #define __suspend
 #include <string>
+#include "ref.hpp"
 
 class FloatingImage;
 typedef FloatingImage _FloatingImage;
@@ -48,14 +49,15 @@ public:
   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
-