Changed jump behaviour: Tux will now jump even if the button was pressed (up to)...
[supertux.git] / src / object / portable.hpp
index 52802ba..721879d 100644 (file)
@@ -43,6 +43,11 @@ public:
 
   virtual void ungrab(MovingObject& , Direction )
   {}
+
+  virtual bool is_portable() const
+  {
+    return true;
+  }
 };
 
 #endif