diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-02 12:47:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-02 12:47:16 +0300 |
commit | 05f6f3e94abc5c1e1801d62100cef494e2711474 (patch) | |
tree | d3ee874dd7fa9c6b6170cae8435ea7f18eb1f102 /src/net/tmwa/playerhandler.h | |
parent | 11caa7aeeb3a7b40823da8573576d2354b7504b5 (diff) | |
download | plus-05f6f3e94abc5c1e1801d62100cef494e2711474.tar.gz plus-05f6f3e94abc5c1e1801d62100cef494e2711474.tar.bz2 plus-05f6f3e94abc5c1e1801d62100cef494e2711474.tar.xz plus-05f6f3e94abc5c1e1801d62100cef494e2711474.zip |
Add missing const and static into net classes.
Diffstat (limited to 'src/net/tmwa/playerhandler.h')
-rw-r--r-- | src/net/tmwa/playerhandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/tmwa/playerhandler.h b/src/net/tmwa/playerhandler.h index 5e1419119..125eea0ba 100644 --- a/src/net/tmwa/playerhandler.h +++ b/src/net/tmwa/playerhandler.h @@ -51,11 +51,11 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void setDestination(const int x, const int y, const int direction) const override final; void changeAction(const Being::Action &action) const override final; - void processOnlineList(Net::MessageIn &msg) const; + static void processOnlineList(Net::MessageIn &msg); void requestOnlineList() const override final; void updateStatus(const uint8_t status) const override final; - void processMapMask(Net::MessageIn &msg) const; - void processMapMusic(Net::MessageIn &msg) const; + static void processMapMask(Net::MessageIn &msg); + static void processMapMusic(Net::MessageIn &msg); void respawn() const override final; }; |