diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-25 18:13:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-25 18:13:48 +0300 |
commit | c1657f9dd2099796c6b20b9672d500aee30e205b (patch) | |
tree | 07e274728a1ec25c8890abf07ac9943818381c55 /src/net/ea/gamehandler.h | |
parent | a886446d41ed6656afbdd348b6dc6cb617309040 (diff) | |
download | manaplus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.gz manaplus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.bz2 manaplus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.xz manaplus-c1657f9dd2099796c6b20b9672d500aee30e205b.zip |
Move all receive (process) methods into protected.
Diffstat (limited to 'src/net/ea/gamehandler.h')
-rw-r--r-- | src/net/ea/gamehandler.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/ea/gamehandler.h b/src/net/ea/gamehandler.h index 7ff3a5ca9..ee1f12701 100644 --- a/src/net/ea/gamehandler.h +++ b/src/net/ea/gamehandler.h @@ -52,17 +52,17 @@ class GameHandler notfinal : public Net::GameHandler bool canUseMagicBar() const override final A_WARN_UNUSED { return true; } + void clear() override final; + + void initEngines() const override final; + + protected: static void processWhoAnswer(Net::MessageIn &msg); static void processCharSwitchResponse(Net::MessageIn &msg); static void processMapQuitResponse(Net::MessageIn &msg); - void clear() override final; - - void initEngines() const override final; - - protected: static std::string mMap; static BeingId mCharID; // < Saved for map-server switching }; |