diff options
author | Ira Rice <irarice@gmail.com> | 2008-10-23 12:08:44 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-10-23 12:08:44 +0000 |
commit | 5b70e7729229317acfd1b8f79e8eb1b90870827b (patch) | |
tree | 1a5e5c2ef5390a2ec48324ffe351d5eb425863e8 /src/text.h | |
parent | 7a88c394584cb02cec8d1d7eb70ac2020e033d41 (diff) | |
download | mana-5b70e7729229317acfd1b8f79e8eb1b90870827b.tar.gz mana-5b70e7729229317acfd1b8f79e8eb1b90870827b.tar.bz2 mana-5b70e7729229317acfd1b8f79e8eb1b90870827b.tar.xz mana-5b70e7729229317acfd1b8f79e8eb1b90870827b.zip |
Removed a few compiler warnings.
Diffstat (limited to 'src/text.h')
-rw-r--r-- | src/text.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -57,7 +57,7 @@ class Text virtual void draw(Graphics *graphics, int xOff, int yOff); - private: + protected: int mX; /**< Actual x-value of left of text written */ int mY; /**< Actual y-value of top of text written */ @@ -78,6 +78,11 @@ class FlashText : public Text gcn::Color colour); /** + * Remove the text from the screen + */ + ~FlashText(); + + /** * Flash the text for so many refreshes */ void flash(int time) {mTime = time; } |