diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-29 19:21:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-29 19:21:57 +0300 |
commit | da8550ca0017883f20fcefb6dc47f082d30b4b86 (patch) | |
tree | b4dc67cb38c358c81389186c135aff1ffc9641fb /src/resources | |
parent | 0f8b2ddf88c1cdd6bfac1e76e8173bd12f57a441 (diff) | |
download | plus-da8550ca0017883f20fcefb6dc47f082d30b4b86.tar.gz plus-da8550ca0017883f20fcefb6dc47f082d30b4b86.tar.bz2 plus-da8550ca0017883f20fcefb6dc47f082d30b4b86.tar.xz plus-da8550ca0017883f20fcefb6dc47f082d30b4b86.zip |
Add name into WalkLayer memory object.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/map/walklayer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/map/walklayer.h b/src/resources/map/walklayer.h index efa85b9dd..83ae2e0ce 100644 --- a/src/resources/map/walklayer.h +++ b/src/resources/map/walklayer.h @@ -41,6 +41,9 @@ class WalkLayer final : public Resource int calcMemoryLocal() const override final; + std::string getCounterName() const override final + { return "walk layer"; } + private: int mWidth; int mHeight; |