summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-24 12:17:35 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-24 12:17:35 +0300
commit1814650ad896a0f9684d279fa5843771e767748a (patch)
tree5387bdca11a76198c7be67b7009cacd9fc31b0fb /src/net/eathena/skillhandler.h
parentd6fbc25d16e3f96a20c492904a0dab16f8b4d8fb (diff)
downloadManaVerse-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/eathena/skillhandler.h')
-rw-r--r--src/net/eathena/skillhandler.h8
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