Addded property to Worldmap Spawnpoint to let Tux automatically start walking (or...
[supertux.git] / src / object / trampoline.hpp
index 788fe2a..c534f54 100644 (file)
@@ -37,14 +37,15 @@ public:
   void collision_solid(const CollisionHit& hit);
   void update(float elapsed_time);
 
-  void grab( MovingObject&, const Vector& pos, Direction );
-  void ungrab(MovingObject& , Direction );
+  void grab(MovingObject&, const Vector& pos, Direction);
+  void ungrab(MovingObject&, Direction);
   bool is_portable() const;
 
 private:
   Physic physic;
   bool on_ground;
   bool portable;
+  bool grabbed;
 };
 
 #endif