summaryrefslogtreecommitdiff
path: root/src/npc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/npc.h')
-rw-r--r--src/npc.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/npc.h b/src/npc.h
index 3b61123b..cf5defbc 100644
--- a/src/npc.h
+++ b/src/npc.h
@@ -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();