diff options
Diffstat (limited to 'src/map/map.t.hpp')
-rw-r--r-- | src/map/map.t.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/map/map.t.hpp b/src/map/map.t.hpp index 09444fd..c57ea06 100644 --- a/src/map/map.t.hpp +++ b/src/map/map.t.hpp @@ -542,4 +542,19 @@ ENUM_BITWISE_OPERATORS(MobMode) } using e::MobMode; +namespace e +{ +enum class MapCell : uint8_t +{ + // the usual thing + UNWALKABLE = 0x01, + // not in tmwa data + _range = 0x04, + // set in code, not imported + NPC_NEAR = 0x80, +}; +ENUM_BITWISE_OPERATORS(MapCell) +} +using e::MapCell; + #endif // MAP_T_HPP |