diff options
Diffstat (limited to 'src/npc.h')
-rw-r--r-- | src/npc.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -26,12 +26,18 @@ #include "being.h" +class Graphics; + class NPC : public Being { public: NPC(Uint16 id, Uint16 job, Map *map); - virtual Type getType() const; + virtual Type + getType() const; + + virtual void + drawName(Graphics *graphics, Sint32 offsetX, Sint32 offsetY); void talk(); void nextDialog(); |