X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgame_object.hpp;h=a1734ab45211dfee80a5439574b32a02f702e29f;hb=c0c4838b917943354c150d56ab970ca249267037;hp=6e0c4eed4ea9b33817508316d18ef0205559aa52;hpb=6ae2d154b976957d8e209bb991672b0c12c503c7;p=supertux.git diff --git a/src/game_object.hpp b/src/game_object.hpp index 6e0c4eed4..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