fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / flip_level_transformer.hpp
index d58bc93..12459c4 100644 (file)
@@ -21,6 +21,9 @@
 #define __FLIP_LEVEL_TRANSFORMER_H__
 
 #include "level_transformer.hpp"
+#include "object/platform.hpp"
+#include "object/path.hpp"
+#include "object/block.hpp"
 
 class TileMap;
 class BadGuy;
@@ -38,7 +41,8 @@ private:
   void transform_moving_object(float height, MovingObject* object);
   void transform_badguy(float height, BadGuy* badguy);
   void transform_spawnpoint(float height, SpawnPoint* spawnpoint);
+  void transform_platform(float height, Platform& platform);
+  void transform_block(float height, Block& block);
 };
 
 #endif
-