diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-10 14:57:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-10 14:57:39 +0300 |
commit | 3efda43abd11979adfd048fc62fe4f09e702f772 (patch) | |
tree | 80f8d0f65bf7648ae78e12badc11f13b4481b87a /src/net/ea/npchandler.h | |
parent | a0c7a0e2d34a13f2c3e86f662e352977ebe2ae73 (diff) | |
download | plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.gz plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.bz2 plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.xz plus-3efda43abd11979adfd048fc62fe4f09e702f772.zip |
improve npchandler class.
Diffstat (limited to 'src/net/ea/npchandler.h')
-rw-r--r-- | src/net/ea/npchandler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/ea/npchandler.h b/src/net/ea/npchandler.h index ea5bad135..526ced9f0 100644 --- a/src/net/ea/npchandler.h +++ b/src/net/ea/npchandler.h @@ -42,13 +42,13 @@ class NpcHandler : public Net::NpcHandler A_DELETE_COPY(NpcHandler) void sendLetter(int npcId, const std::string &recipient, - const std::string &text); + const std::string &text) const override; - void startShopping(int beingId); + void startShopping(int beingId) const override; - void endShopping(int beingId); + void endShopping(int beingId) const override; - void clearDialogs(); + void clearDialogs() override; virtual int getNpc(Net::MessageIn &msg, bool haveLength) A_WARN_UNUSED = 0; |