diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/being.h b/src/being.h index 446cb906..d87f06ab 100644 --- a/src/being.h +++ b/src/being.h @@ -189,6 +189,18 @@ class Being : public Sprite drawSpeech(Graphics *graphics, Sint32 offsetX, Sint32 offsetY); /** + * Draws the emotion picture above the being. + */ + void + drawEmotion(Graphics *graphics, Sint32 offsetX, Sint32 offsetY); + + /** + * Draws the name text below the being. + */ + void + drawName(Graphics *graphics, Sint32 offsetX, Sint32 offsetY); + + /** * Returns the type of the being. */ virtual Type getType() const; @@ -249,7 +261,7 @@ class Being : public Sprite * @see Sprite::draw(Graphics, int, int) */ void - draw(Graphics *graphics, Sint32 offsetX, Sint32 offsetY); + draw(Graphics *graphics, Sint32 offsetX, Sint32 offsetY) {}; /** * Returns the pixel X coordinate. |