X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftile.hpp;h=7351a328ff0ddf28c991ff708753b555020cec2d;hb=7504b8ef1155259916f0e38eeb74a6024bb1d85b;hp=c03154f8e6972e69926c9fe5761d2d4304301d98;hpb=a113d3bd1feddd510e3b2852b0d42522735eee40;p=supertux.git diff --git a/src/tile.hpp b/src/tile.hpp index c03154f8e..7351a328f 100644 --- a/src/tile.hpp +++ b/src/tile.hpp @@ -65,6 +65,8 @@ public: WATER = 0x0200, /** a tile that hurts the player if he touches it */ HURTS = 0x0400, + /** for lava: WATER, HURTS, FIRE */ + FIRE = 0x0800 }; /// worldmap flags @@ -73,6 +75,7 @@ public: WORLDMAP_SOUTH = 0x0002, WORLDMAP_EAST = 0x0004, WORLDMAP_WEST = 0x0008, + WORLDMAP_DIR_MASK = 0x000f, WORLDMAP_STOP = 0x0010,