diff options
Diffstat (limited to 'src/maplayer.h')
-rw-r--r-- | src/maplayer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/maplayer.h b/src/maplayer.h index f5b4c88a8..0706e438e 100644 --- a/src/maplayer.h +++ b/src/maplayer.h @@ -102,7 +102,7 @@ class MapLayer final: public ConfigListener * There can be only one fringe layer per map. */ MapLayer(const int x, const int y, const int width, const int height, - const bool isFringeLayer); + const bool isFringeLayer, const int mask); A_DELETE_COPY(MapLayer) @@ -190,6 +190,7 @@ class MapLayer final: public ConfigListener SpecialLayer *mTempLayer; typedef std::vector<MapRowVertexes*> MapRows; MapRows mTempRows; + int mMask; bool mIsFringeLayer; /**< Whether the actors are drawn. */ bool mHighlightAttackRange; }; |