diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-09 21:28:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-09 21:28:08 +0300 |
commit | 76bbb31b1d9b1b8c22614ac91e765519194257d8 (patch) | |
tree | 2eccf36c757bb024efbcad754313e227742902cb /src/net/tmwa | |
parent | 020e34363763d9cd0d691ae3b3da1ead52defa4e (diff) | |
download | plus-76bbb31b1d9b1b8c22614ac91e765519194257d8.tar.gz plus-76bbb31b1d9b1b8c22614ac91e765519194257d8.tar.bz2 plus-76bbb31b1d9b1b8c22614ac91e765519194257d8.tar.xz plus-76bbb31b1d9b1b8c22614ac91e765519194257d8.zip |
eathena: add packet CMSG_SEARCHSTORE_CLICK 0x0835.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/searchstorehandler.cpp | 6 | ||||
-rw-r--r-- | src/net/tmwa/searchstorehandler.h | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/net/tmwa/searchstorehandler.cpp b/src/net/tmwa/searchstorehandler.cpp index 3cd3798a5..b4c304573 100644 --- a/src/net/tmwa/searchstorehandler.cpp +++ b/src/net/tmwa/searchstorehandler.cpp @@ -62,4 +62,10 @@ void SearchStoreHandler::close() const { } +void SearchStoreHandler::select(const int accountId A_UNUSED, + const int storeId A_UNUSED, + const int itemId A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/searchstorehandler.h b/src/net/tmwa/searchstorehandler.h index fc7946a86..4f2f9a6de 100644 --- a/src/net/tmwa/searchstorehandler.h +++ b/src/net/tmwa/searchstorehandler.h @@ -45,6 +45,10 @@ class SearchStoreHandler final : public MessageHandler, void nextPage() const override final; void close() const override final; + + void select(const int accountId, + const int storeId, + const int itemId) const override final; }; } // namespace TmwAthena |