diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-01 18:07:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-02 00:13:44 +0300 |
commit | c8c51d7550adf9c952a4be54398df7e7a6f341a8 (patch) | |
tree | 4404d6d2a86c820661cb29f8c67abefeefd54810 /src/net/eathena/vendinghandler.h | |
parent | 30f142d6a147885afef203cdc83326cccdb4bb75 (diff) | |
download | plus-c8c51d7550adf9c952a4be54398df7e7a6f341a8.tar.gz plus-c8c51d7550adf9c952a4be54398df7e7a6f341a8.tar.bz2 plus-c8c51d7550adf9c952a4be54398df7e7a6f341a8.tar.xz plus-c8c51d7550adf9c952a4be54398df7e7a6f341a8.zip |
add buy dialog for vending shop.
Diffstat (limited to 'src/net/eathena/vendinghandler.h')
-rw-r--r-- | src/net/eathena/vendinghandler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/eathena/vendinghandler.h b/src/net/eathena/vendinghandler.h index 30e9f50e2..ba7059071 100644 --- a/src/net/eathena/vendinghandler.h +++ b/src/net/eathena/vendinghandler.h @@ -25,6 +25,8 @@ #include "net/eathena/messagehandler.h" +class BuyDialog; + namespace EAthena { class VendingHandler final : public MessageHandler, @@ -68,6 +70,8 @@ class VendingHandler final : public MessageHandler, static void processOpen(Net::MessageIn &msg); static void processReport(Net::MessageIn &msg); + + static BuyDialog *mBuyDialog; }; } // namespace EAthena |