diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-11-13 18:21:41 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-11-13 18:24:39 +0100 |
commit | a9e3a2b212fb5b60bb0479fa999ddeeaa0355598 (patch) | |
tree | f72ff41c0891bea5b72e65bd0abacd2f8da7f7f0 /src/graphics/animation.cpp | |
parent | 87d8264e8b06db067cda79029c7798f4e5c578e8 (diff) |
Use base constructors to reduce code size
Diffstat (limited to 'src/graphics/animation.cpp')
-rw-r--r-- | src/graphics/animation.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/graphics/animation.cpp b/src/graphics/animation.cpp index 577324a..f311cf0 100644 --- a/src/graphics/animation.cpp +++ b/src/graphics/animation.cpp @@ -71,13 +71,6 @@ namespace Graphics{ Animation::~Animation(){} // ONESHOT ANIMATION - OneShotAnimation::OneShotAnimation(){} - - OneShotAnimation::OneShotAnimation(const sf::Texture& texture, int count, - int switchTime, int height = 0, int width = 0, int row = 0): - Animation(texture, count, switchTime, height, width, row) { - } - bool OneShotAnimation::finished(){ return (i_ == count_ - 1); } @@ -98,14 +91,6 @@ namespace Graphics{ } // BOUNCING ANIMATION - BouncingAnimation::BouncingAnimation(){} - - BouncingAnimation::BouncingAnimation(const sf::Texture& texture, int count, - int switchTime, int height = 0, int width = 0, int row = 0): - Animation(texture, count, switchTime, height, width, row), - up_ (true) { - } - sf::IntRect& BouncingAnimation::next(int deltaTime){ if( !ticked(deltaTime) ) { return rect_; |