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/playerhandler.h | |
parent | d6fbc25d16e3f96a20c492904a0dab16f8b4d8fb (diff) | |
download | mv-1814650ad896a0f9684d279fa5843771e767748a.tar.gz mv-1814650ad896a0f9684d279fa5843771e767748a.tar.bz2 mv-1814650ad896a0f9684d279fa5843771e767748a.tar.xz mv-1814650ad896a0f9684d279fa5843771e767748a.zip |
add final keyword to net files.
Diffstat (limited to 'src/net/ea/playerhandler.h')
-rw-r--r-- | src/net/ea/playerhandler.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/ea/playerhandler.h b/src/net/ea/playerhandler.h index 219ea17f2..3e97994ce 100644 --- a/src/net/ea/playerhandler.h +++ b/src/net/ea/playerhandler.h @@ -36,22 +36,22 @@ class PlayerHandler : public Net::PlayerHandler A_DELETE_COPY(PlayerHandler) - void decreaseAttribute(const int attr) const override; + void decreaseAttribute(const int attr) const override final; void ignorePlayer(const std::string &player, - const bool ignore) const override; + const bool ignore) const override final; - void ignoreAll(const bool ignore) const override; + void ignoreAll(const bool ignore) const override final; - bool canUseMagic() const override; + bool canUseMagic() const override final; - bool canCorrectAttributes() const override; + bool canCorrectAttributes() const override final; - Vector getDefaultWalkSpeed() const override A_WARN_UNUSED; + Vector getDefaultWalkSpeed() const override final A_WARN_UNUSED; - int getJobLocation() const override A_WARN_UNUSED; + int getJobLocation() const override final A_WARN_UNUSED; - int getAttackLocation() const override A_WARN_UNUSED; + int getAttackLocation() const override final A_WARN_UNUSED; void processWalkResponse(Net::MessageIn &msg) const; |