summaryrefslogtreecommitdiff
path: root/src/net/ea/playerhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-19 17:43:40 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-19 17:43:40 +0300
commit53bbb5541d4770d39f98bf0a789cc24918061e5b (patch)
tree62b5ee3e82db68974deb972ca4f2ca219f280bef /src/net/ea/playerhandler.h
parent8f36f816373904eeb1c0b800114e3c44bad168e8 (diff)
downloadplus-53bbb5541d4770d39f98bf0a789cc24918061e5b.tar.gz
plus-53bbb5541d4770d39f98bf0a789cc24918061e5b.tar.bz2
plus-53bbb5541d4770d39f98bf0a789cc24918061e5b.tar.xz
plus-53bbb5541d4770d39f98bf0a789cc24918061e5b.zip
Add static in playerhandler.
Diffstat (limited to 'src/net/ea/playerhandler.h')
-rw-r--r--src/net/ea/playerhandler.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/net/ea/playerhandler.h b/src/net/ea/playerhandler.h
index 8c530b29d..786c63625 100644
--- a/src/net/ea/playerhandler.h
+++ b/src/net/ea/playerhandler.h
@@ -53,23 +53,23 @@ class PlayerHandler notfinal : public Net::PlayerHandler
Vector getDefaultWalkSpeed() const override final A_WARN_UNUSED;
- protected:
- virtual void setStat(const int type,
- const int base,
- const int mod,
- const bool notify) const = 0;
+ void setStat(const int type,
+ const int base,
+ const int mod,
+ const bool notify) const override;
+ protected:
static void processPlayerWarp(Net::MessageIn &msg);
- void processPlayerStatUpdate1(Net::MessageIn &msg) const;
+ static void processPlayerStatUpdate1(Net::MessageIn &msg);
- void processPlayerStatUpdate2(Net::MessageIn &msg) const;
+ static void processPlayerStatUpdate2(Net::MessageIn &msg);
- void processPlayerStatUpdate3(Net::MessageIn &msg) const;
+ static void processPlayerStatUpdate3(Net::MessageIn &msg);
- void processPlayerStatUpdate4(Net::MessageIn &msg) const;
+ static void processPlayerStatUpdate4(Net::MessageIn &msg);
- void processPlayerStatUpdate6(Net::MessageIn &msg) const;
+ static void processPlayerStatUpdate6(Net::MessageIn &msg);
static void processPlayerArrowMessage(Net::MessageIn &msg);
};