summaryrefslogtreecommitdiff
path: root/src/sprite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sprite.h')
-rw-r--r--src/sprite.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sprite.h b/src/sprite.h
index 8fb78b248..3ec3fe00d 100644
--- a/src/sprite.h
+++ b/src/sprite.h
@@ -32,11 +32,6 @@ class Image;
class Sprite
{
public:
- Sprite() :
- mAlpha()
- {
- }
-
virtual ~Sprite()
{ }
@@ -122,6 +117,11 @@ class Sprite
virtual bool updateNumber(const unsigned num) = 0;
protected:
+ Sprite() :
+ mAlpha()
+ {
+ }
+
float mAlpha; /**< The alpha opacity used to draw */
};