diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-30 15:11:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-30 15:11:45 +0300 |
commit | 7c8e0e0454f2e9acfde62faf669a1628e3935a58 (patch) | |
tree | 5beb7c7506fcea774c2102a16a1886e923ad0891 /src/net/eathena/playerhandler.h | |
parent | a0157bd0f1909af5758adc32370125bdb76ccc5a (diff) | |
download | plus-7c8e0e0454f2e9acfde62faf669a1628e3935a58.tar.gz plus-7c8e0e0454f2e9acfde62faf669a1628e3935a58.tar.bz2 plus-7c8e0e0454f2e9acfde62faf669a1628e3935a58.tar.xz plus-7c8e0e0454f2e9acfde62faf669a1628e3935a58.zip |
Move receive code from playerhandler into separate file.
Diffstat (limited to 'src/net/eathena/playerhandler.h')
-rw-r--r-- | src/net/eathena/playerhandler.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/net/eathena/playerhandler.h b/src/net/eathena/playerhandler.h index d32d06ab9..82a060d04 100644 --- a/src/net/eathena/playerhandler.h +++ b/src/net/eathena/playerhandler.h @@ -70,52 +70,11 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void revive() const override final; void setViewEquipment(const bool allow) const override final; - protected: void setStat(Net::MessageIn &msg, const int type, const int base, const int mod, const Notify notify) const override final; - - static void processPlayerShortcuts(Net::MessageIn &msg); - - static void processPlayerShowEquip(Net::MessageIn &msg); - - static void processPlayerStatUpdate5(Net::MessageIn &msg); - - static void processPlayerGetExp(Net::MessageIn &msg); - - static void processPvpInfo(Net::MessageIn &msg); - - static void processPlayerHeal(Net::MessageIn &msg); - - static void processPlayerSkillMessage(Net::MessageIn &msg); - - static void processWalkResponse(Net::MessageIn &msg); - - static void processNotifyMapInfo(Net::MessageIn &msg); - - static void processPlayerFameBlacksmith(Net::MessageIn &msg); - - static void processPlayerFameAlchemist(Net::MessageIn &msg); - - static void processPlayerUpgradeMessage(Net::MessageIn &msg); - - static void processPlayerFameTaekwon(Net::MessageIn &msg); - - static void processPlayerReadBook(Net::MessageIn &msg); - - static void processPlayerEquipTickAck(Net::MessageIn &msg); - - static void processPlayerAutoShadowSpellList(Net::MessageIn &msg); - - static void processPlayerRankPoints(Net::MessageIn &msg); - - static void processPlayerClientCommand(Net::MessageIn &msg); - - static void processOnlineList(Net::MessageIn &msg); - - static void processMapMask(Net::MessageIn &msg); }; } // namespace EAthena |