diff options
Diffstat (limited to 'src/text.h')
-rw-r--r-- | src/text.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/text.h b/src/text.h index ae53a5984..38709f83b 100644 --- a/src/text.h +++ b/src/text.h @@ -76,6 +76,14 @@ class Text notfinal virtual void draw(Graphics *const graphics, const int xOff, const int yOff) A_NONNULL(2); + int getWidth() A_WARN_UNUSED; + + int getX() A_WARN_UNUSED + { return mX; } + + int getY() A_WARN_UNUSED + { return mY; } + private: Font *mFont; /**< The font of the text */ TextChunk mTextChunk; |