diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-02 20:58:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-02 20:58:41 +0300 |
commit | 84d2bab38202cd52b5eb0a37c12204ab6f607915 (patch) | |
tree | 2f3951b2f4f3b75f190eb2539979cc4afbace27c /src/net/eathena/beinghandler.h | |
parent | 40730c4fa73d403cf7284a76d9b26f7ec662afa4 (diff) | |
download | plus-84d2bab38202cd52b5eb0a37c12204ab6f607915.tar.gz plus-84d2bab38202cd52b5eb0a37c12204ab6f607915.tar.bz2 plus-84d2bab38202cd52b5eb0a37c12204ab6f607915.tar.xz plus-84d2bab38202cd52b5eb0a37c12204ab6f607915.zip |
Remove MessageHandler class
Diffstat (limited to 'src/net/eathena/beinghandler.h')
-rw-r--r-- | src/net/eathena/beinghandler.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/net/eathena/beinghandler.h b/src/net/eathena/beinghandler.h index d47ec2f98..6780e9bc3 100644 --- a/src/net/eathena/beinghandler.h +++ b/src/net/eathena/beinghandler.h @@ -25,20 +25,16 @@ #include "net/ea/beinghandler.h" -#include "net/eathena/messagehandler.h" - namespace EAthena { -class BeingHandler final : public MessageHandler, public Ea::BeingHandler +class BeingHandler final : public Ea::BeingHandler { public: explicit BeingHandler(const bool enableSync); A_DELETE_COPY(BeingHandler) - void handleMessage(Net::MessageIn &msg) override final; - void requestNameById(const BeingId id) const override final; void undress(Being *const being) const override final; |