diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:19:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:19:01 +0300 |
commit | b8c77348db8b0bf500cb6a13cce75c61a544c500 (patch) | |
tree | 5b7eb62121e5dc7d95c5e40b5e4cfa86e02375d8 /src/animatedsprite.h | |
parent | a4fb136ebf9272e6254081fa0586ce8b383857d9 (diff) | |
download | plus-b8c77348db8b0bf500cb6a13cce75c61a544c500.tar.gz plus-b8c77348db8b0bf500cb6a13cce75c61a544c500.tar.bz2 plus-b8c77348db8b0bf500cb6a13cce75c61a544c500.tar.xz plus-b8c77348db8b0bf500cb6a13cce75c61a544c500.zip |
add final keyword to all other files.
Diffstat (limited to 'src/animatedsprite.h')
-rw-r--r-- | src/animatedsprite.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/animatedsprite.h b/src/animatedsprite.h index 83722ebf8..7b92d5d0e 100644 --- a/src/animatedsprite.h +++ b/src/animatedsprite.h @@ -63,14 +63,14 @@ class AnimatedSprite final : public Sprite ~AnimatedSprite(); - bool reset() override; + bool reset() override final; - bool play(const std::string &action) override; + bool play(const std::string &action) override final; - bool update(const int time) override; + bool update(const int time) override final; bool draw(Graphics *const graphics, - const int posX, const int posY) const override; + const int posX, const int posY) const override final; int getWidth() const A_WARN_UNUSED; @@ -89,9 +89,9 @@ class AnimatedSprite final : public Sprite unsigned int getFrameCount() const A_WARN_UNUSED; - void setAlpha(float alpha) override; + void setAlpha(float alpha) override final; - const void *getHash() const override A_WARN_UNUSED; + const void *getHash() const override final A_WARN_UNUSED; bool updateNumber(const unsigned num); |