diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-28 21:00:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-28 21:00:12 +0300 |
commit | a93722a53e2d50466dfd5512c4a6a1c3dfc60fb1 (patch) | |
tree | b4ade374e591f520ae49b1dcb3317b19d503f089 /src/net/ea | |
parent | e5695ad6c41d4deb79504998b2bc5caeb1e61285 (diff) | |
download | plus-a93722a53e2d50466dfd5512c4a6a1c3dfc60fb1.tar.gz plus-a93722a53e2d50466dfd5512c4a6a1c3dfc60fb1.tar.bz2 plus-a93722a53e2d50466dfd5512c4a6a1c3dfc60fb1.tar.xz plus-a93722a53e2d50466dfd5512c4a6a1c3dfc60fb1.zip |
Add support for processing player statuses in evol server.
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/playerhandler.cpp | 5 | ||||
-rw-r--r-- | src/net/ea/playerhandler.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/ea/playerhandler.cpp b/src/net/ea/playerhandler.cpp index 6a841415f..90c635428 100644 --- a/src/net/ea/playerhandler.cpp +++ b/src/net/ea/playerhandler.cpp @@ -645,4 +645,9 @@ int PlayerHandler::getAttackLocation() const { return EA_ATK; } + +void PlayerHandler::updateStatus() +{ + +} } // namespace Ea diff --git a/src/net/ea/playerhandler.h b/src/net/ea/playerhandler.h index d0402ecfc..7bf569349 100644 --- a/src/net/ea/playerhandler.h +++ b/src/net/ea/playerhandler.h @@ -68,6 +68,8 @@ class PlayerHandler : public Net::PlayerHandler void processPlayerStatUpdate6(Net::MessageIn &msg); void processPlayerArrowMessage(Net::MessageIn &msg); + + void updateStatus(); }; } // namespace Ea |