* Small miniswig update to use less dependencies
[supertux.git] / src / worldmap / tux.hpp
index 4c36042..ebecefe 100644 (file)
@@ -48,6 +48,8 @@ private:
   float offset;
   bool  moving;
 
+  bool ghost_mode;
+
   void stop();
 
   bool canWalk(int tile_data, Direction dir); /**< check if we can leave a tile (with given "tile_data") in direction "dir" */
@@ -65,6 +67,9 @@ public:
 
   void set_direction(Direction dir);
 
+  void set_ghost_mode(bool enabled);
+  bool get_ghost_mode();
+
   bool is_moving() const { return moving; }
   Vector get_pos();
   Vector get_tile_pos() const { return tile_pos; }