diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-05 12:00:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-05 12:00:20 +0300 |
commit | 805299e4d653440c582f6c576bcd7de2e1b2c3d4 (patch) | |
tree | a85f217a0530e536cb1483360bea2df0cad0e213 /src/net/eathena/buyingstorehandler.h | |
parent | 527d9d1aea2b840e98dd0976f7bd3426703a886a (diff) | |
download | plus-805299e4d653440c582f6c576bcd7de2e1b2c3d4.tar.gz plus-805299e4d653440c582f6c576bcd7de2e1b2c3d4.tar.bz2 plus-805299e4d653440c582f6c576bcd7de2e1b2c3d4.tar.xz plus-805299e4d653440c582f6c576bcd7de2e1b2c3d4.zip |
eathena: add packet CMSG_BUYINGSTORE_CREATE 0x0815.
Diffstat (limited to 'src/net/eathena/buyingstorehandler.h')
-rw-r--r-- | src/net/eathena/buyingstorehandler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/eathena/buyingstorehandler.h b/src/net/eathena/buyingstorehandler.h index a5e0a85b5..edafbc170 100644 --- a/src/net/eathena/buyingstorehandler.h +++ b/src/net/eathena/buyingstorehandler.h @@ -37,6 +37,11 @@ class BuyingStoreHandler final : public MessageHandler, void handleMessage(Net::MessageIn &msg) override final; + void create(const std::string &name, + const int maxMoney, + const bool flag, + std::vector<ShopItem*> &items) const override final; + protected: static void processBuyingStoreOpen(Net::MessageIn &msg); }; |