converted player to new object system
[supertux.git] / src / type.h
index bc6e7c8..f018f3b 100644 (file)
@@ -65,7 +65,8 @@ public:
     scroll_x = tmp;
     base = btmp;
   };
-void move_to(float x, float y) { base.x = x; base.y = y; };
+
+  void move_to(float x, float y) { base.x = x; base.y = y; };
 
   base_type base;
   base_type old_base;
@@ -86,5 +87,7 @@ void  string_list_sort(string_list_type* pstring_list);
 void  string_list_add_item(string_list_type* pstring_list, const char* str);
 void  string_list_free(string_list_type* pstring_list);
 
+
+
 #endif /*SUPERTUX_TYPE_H*/