diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-01-28 23:36:15 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-01-29 13:24:20 +0100 |
commit | 8e4fe8414eed9fc4934a0d0e34eee578e0216dc7 (patch) | |
tree | 1e83aa3712bd2f2b5da4a1ddc5226563215ff1be /src/sprite.h | |
parent | 3cd5ac3ced565c86a5e5ca4fdb336e91ba55f524 (diff) | |
download | mana-8e4fe8414eed9fc4934a0d0e34eee578e0216dc7.tar.gz mana-8e4fe8414eed9fc4934a0d0e34eee578e0216dc7.tar.bz2 mana-8e4fe8414eed9fc4934a0d0e34eee578e0216dc7.tar.xz mana-8e4fe8414eed9fc4934a0d0e34eee578e0216dc7.zip |
Removed Sprite::getCurrentFrame and Sprite::getFrameCount
They are apparently no longer being used.
Reviewed-by: Erik Schilling
Diffstat (limited to 'src/sprite.h')
-rw-r--r-- | src/sprite.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/sprite.h b/src/sprite.h index 35df7115..3af6eb7c 100644 --- a/src/sprite.h +++ b/src/sprite.h @@ -87,7 +87,7 @@ class Sprite /** * Returns a reference to the current image being drawn. */ - virtual const Image* getImage() const = 0; + virtual const Image *getImage() const = 0; /** * Sets the direction. @@ -109,16 +109,6 @@ class Sprite { return mAlpha; } /** - * Returns the current frame number for the sprite. - */ - virtual size_t getCurrentFrame() const = 0; - - /** - * Returns the frame count for the sprite. - */ - virtual size_t getFrameCount() const = 0; - - /** * Returns the duration of the current sprite animation in milliseconds. */ virtual int getDuration() const = 0; |