summaryrefslogtreecommitdiff
path: root/src/graphics/animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/animation.h')
-rw-r--r--src/graphics/animation.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/graphics/animation.h b/src/graphics/animation.h
index 503b75d..010a64a 100644
--- a/src/graphics/animation.h
+++ b/src/graphics/animation.h
@@ -28,9 +28,7 @@ namespace Graphics{
class OneShotAnimation : public Animation {
public:
- OneShotAnimation();
- OneShotAnimation(const sf::Texture& texture, int count, int
- switchTime, int height, int width, int row);
+ using Animation::Animation;
sf::IntRect& next(int deltaTime) override;
bool finished() override;
};
@@ -39,9 +37,7 @@ namespace Graphics{
private:
bool up_;
public:
- BouncingAnimation();
- BouncingAnimation(const sf::Texture& texture, int count, int
- switchTime, int height, int width, int row);
+ using Animation::Animation;
~BouncingAnimation();
sf::IntRect& next(int deltaTime) override;
};