diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/markethandler.cpp | 6 | ||||
-rw-r--r-- | src/net/tmwa/markethandler.h | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/net/tmwa/markethandler.cpp b/src/net/tmwa/markethandler.cpp index 5e7a6a9c4..4ac91a5a8 100644 --- a/src/net/tmwa/markethandler.cpp +++ b/src/net/tmwa/markethandler.cpp @@ -51,4 +51,10 @@ void MarketHandler::close() { } +void MarketHandler::buyItem(const int itemId A_UNUSED, + const unsigned char color A_UNUSED, + const int amount A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/markethandler.h b/src/net/tmwa/markethandler.h index d3e1a3101..b9d1a013e 100644 --- a/src/net/tmwa/markethandler.h +++ b/src/net/tmwa/markethandler.h @@ -38,6 +38,11 @@ class MarketHandler final : public MessageHandler, void handleMessage(Net::MessageIn &msg) override final; void close() override final; + + void buyItem(const int itemId, + const unsigned char color, + const int amount) const override final; + }; } // namespace TmwAthena |