summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map.h b/src/map.h
index 4892bc590..0dbfbd44f 100644
--- a/src/map.h
+++ b/src/map.h
@@ -35,6 +35,7 @@ class Animation;
class AmbientLayer;
class MapLayer;
class Particle;
+class Resource;
class SimpleAnimation;
class Tileset;
class SpecialLayer;
@@ -395,6 +396,9 @@ class Map final : public Properties, public ConfigListener
std::map<int, TileAnimation*> &getTileAnimations()
{ return mTileAnimations; }
+ void setAtlas(Resource *atlas)
+ { mAtlas = atlas; }
+
protected:
friend class Actor;
friend class Minimap;
@@ -503,6 +507,7 @@ class Map final : public Properties, public ConfigListener
bool mRedrawMap;
bool mBeingOpacity;
bool mCustom;
+ Resource *mAtlas;
};
#endif