diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:17:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:17:35 +0300 |
commit | 1814650ad896a0f9684d279fa5843771e767748a (patch) | |
tree | 5387bdca11a76198c7be67b7009cacd9fc31b0fb /src/net/ea/npchandler.h | |
parent | d6fbc25d16e3f96a20c492904a0dab16f8b4d8fb (diff) | |
download | ManaVerse-1814650ad896a0f9684d279fa5843771e767748a.tar.gz ManaVerse-1814650ad896a0f9684d279fa5843771e767748a.tar.bz2 ManaVerse-1814650ad896a0f9684d279fa5843771e767748a.tar.xz ManaVerse-1814650ad896a0f9684d279fa5843771e767748a.zip |
add final keyword to net files.
Diffstat (limited to 'src/net/ea/npchandler.h')
-rw-r--r-- | src/net/ea/npchandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/ea/npchandler.h b/src/net/ea/npchandler.h index f67e9b3f3..4eeaac7c0 100644 --- a/src/net/ea/npchandler.h +++ b/src/net/ea/npchandler.h @@ -37,11 +37,11 @@ class NpcHandler : public Net::NpcHandler A_DELETE_COPY(NpcHandler) void sendLetter(const int npcId, const std::string &recipient, - const std::string &text) const override; + const std::string &text) const override final; - void startShopping(const int beingId) const override; + void startShopping(const int beingId) const override final; - void endShopping(const int beingId) const override; + void endShopping(const int beingId) const override final; virtual int getNpc(Net::MessageIn &msg, bool haveLength) A_WARN_UNUSED = 0; |