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/eathena/skillhandler.h | |
parent | d6fbc25d16e3f96a20c492904a0dab16f8b4d8fb (diff) | |
download | plus-1814650ad896a0f9684d279fa5843771e767748a.tar.gz plus-1814650ad896a0f9684d279fa5843771e767748a.tar.bz2 plus-1814650ad896a0f9684d279fa5843771e767748a.tar.xz plus-1814650ad896a0f9684d279fa5843771e767748a.zip |
add final keyword to net files.
Diffstat (limited to 'src/net/eathena/skillhandler.h')
-rw-r--r-- | src/net/eathena/skillhandler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/skillhandler.h b/src/net/eathena/skillhandler.h index c404527c8..057926504 100644 --- a/src/net/eathena/skillhandler.h +++ b/src/net/eathena/skillhandler.h @@ -37,15 +37,15 @@ class SkillHandler final : public MessageHandler, public Ea::SkillHandler A_DELETE_COPY(SkillHandler) - void handleMessage(Net::MessageIn &msg) override; + void handleMessage(Net::MessageIn &msg) override final; void useBeing(const int id, const int level, - const int beingId) const override; + const int beingId) const override final; void usePos(const int id, const int level, - const int x, const int y) const override; + const int x, const int y) const override final; - void useMap(const int id, const std::string &map) const override; + void useMap(const int id, const std::string &map) const override final; }; } // namespace EAthena |