diff options
Diffstat (limited to 'src/npc.h')
-rw-r--r-- | src/npc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,12 +30,14 @@ class Text; class NPC : public Player { public: - NPC(int id, int job, Map *map); + NPC(int id, int subtype, Map *map); void setName(const std::string &name); virtual Type getType() const { return Being::NPC; } + virtual void setSubtype(Uint16 subtype); + void talk(); void setSprite(unsigned int slot, int id, |