diff options
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; } |