summaryrefslogtreecommitdiff
path: root/src/graphics/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/animation.cpp')
-rw-r--r--src/graphics/animation.cpp15
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_;