summaryrefslogtreecommitdiff
path: root/src/resources/action.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-26 20:11:07 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-26 20:11:07 +0300
commit07675230038a24dd251581591379c8fe5cc7bfd1 (patch)
tree1e4633730515af717ba93aef111f855de5cc9b38 /src/resources/action.h
parent17f34f00d37432dae207be3d55ec531a738eb065 (diff)
downloadplus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.gz
plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.bz2
plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.xz
plus-07675230038a24dd251581591379c8fe5cc7bfd1.zip
Add memory count functions into MapLayer and SpecailLayer.
Also change all memory count functions into const methods.
Diffstat (limited to 'src/resources/action.h')
-rw-r--r--src/resources/action.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/resources/action.h b/src/resources/action.h
index 0f6288815..6cf4ed0d0 100644
--- a/src/resources/action.h
+++ b/src/resources/action.h
@@ -59,13 +59,14 @@ class Action final : public MemoryCounter
void setLastFrameDelay(const int delay) noexcept;
- int calcMemoryLocal() override final;
+ int calcMemoryLocal() const override final;
- int calcMemoryChilds(const int level) override final;
+ int calcMemoryChilds(const int level) const override final;
protected:
typedef std::map<SpriteDirection::Type, Animation*> Animations;
typedef Animations::iterator AnimationIter;
+ typedef Animations::const_iterator AnimationCIter;
Animations mAnimations;
unsigned mNumber;