add code to debug collision rectangles
[supertux.git] / src / game_object.hpp
index 6e0c4ee..a1734ab 100644 (file)
@@ -78,7 +78,9 @@ public:
   // flags
   enum {
     /// the tile so you can stand on it
-    FLAG_SOLID       = 0x0001,
+    FLAG_SOLID       = (1 << 0),
+    /// the object can be carried around (inherits from Portable)
+    FLAG_PORTABLE    = (1 << 1)
   };                     
 
   int get_flags() const