experimental code to influence camera, adjusted some parameters, tried to improve...
[supertux.git] / src / object / portable.hpp
index 6358b9d..721879d 100644 (file)
@@ -35,7 +35,7 @@ class Portable
 public:
   virtual ~Portable()
   { }
-  
+
   /**
    * called each frame when the object has been grabbed.
    */
@@ -43,6 +43,11 @@ public:
 
   virtual void ungrab(MovingObject& , Direction )
   {}
+
+  virtual bool is_portable() const
+  {
+    return true;
+  }
 };
 
 #endif