* Don't kill Tux after winning a level. (Bug 675)
[supertux.git] / src / object / portable.hpp
index 5fbabf4..87b6af3 100644 (file)
@@ -45,6 +45,15 @@ public:
   {
     return true;
   }
+  
+  /**
+   * Is the object so heavy/bulky/fragile that Tux can't run while
+   * carrying it?
+   */
+  virtual bool is_hampering()
+  {
+    return false;
+  }
 };
 
 #endif