diff options
Diffstat (limited to 'src/net/npchandler.h')
-rw-r--r-- | src/net/npchandler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/npchandler.h b/src/net/npchandler.h index 706f6d7c3..9ba358068 100644 --- a/src/net/npchandler.h +++ b/src/net/npchandler.h @@ -32,12 +32,16 @@ namespace Net { +class MessageIn; + class NpcHandler notfinal { public: virtual ~NpcHandler() { } + virtual int getNpc(Net::MessageIn &msg) = 0; + virtual void talk(const int npcId) const = 0; virtual void nextDialog(const int npcId) const = 0; |