X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgame_object.hpp;h=a1734ab45211dfee80a5439574b32a02f702e29f;hb=c3f9468882de1fd44f41ccfa7dae6d776bf306a7;hp=547353be58048af667664322416286582baae27a;hpb=d62647592b4ccffa89794af6fa03faaced46999d;p=supertux.git diff --git a/src/game_object.hpp b/src/game_object.hpp index 547353be5..a1734ab45 100644 --- a/src/game_object.hpp +++ b/src/game_object.hpp @@ -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