summaryrefslogtreecommitdiff
path: root/src/compoundsprite.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-02-05 12:33:10 +0300
committerAndrei Karas <akaras@inbox.ru>2013-02-05 15:48:51 +0300
commit126b1470842302537b0bc5e4527cf7fd540a9125 (patch)
tree8d98425338e7a7f01add71d762fba147fc097fc2 /src/compoundsprite.h
parentf6920653c7a958528df248ff61c372a0bd3d4f1d (diff)
downloadmv-126b1470842302537b0bc5e4527cf7fd540a9125.tar.gz
mv-126b1470842302537b0bc5e4527cf7fd540a9125.tar.bz2
mv-126b1470842302537b0bc5e4527cf7fd540a9125.tar.xz
mv-126b1470842302537b0bc5e4527cf7fd540a9125.zip
Add checks and const to animatedsprites and related classes.
Diffstat (limited to 'src/compoundsprite.h')
-rw-r--r--src/compoundsprite.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/compoundsprite.h b/src/compoundsprite.h
index 2e3204d18..aa9b2d7b6 100644
--- a/src/compoundsprite.h
+++ b/src/compoundsprite.h
@@ -61,11 +61,12 @@ public:
virtual bool reset() override;
- virtual bool play(std::string action) override;
+ virtual bool play(const std::string &action) override;
- virtual bool update(int time) override;
+ virtual bool update(const int time) override;
- virtual bool draw(Graphics *graphics, int posX, int posY) const override;
+ virtual bool draw(Graphics *const graphics,
+ const int posX, const int posY) const override;
/**
* Gets the width in pixels of the first sprite in the list.