diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/cashshophandler.cpp | 7 | ||||
-rw-r--r-- | src/net/tmwa/cashshophandler.h | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/net/tmwa/cashshophandler.cpp b/src/net/tmwa/cashshophandler.cpp index 99acd6653..7eab823df 100644 --- a/src/net/tmwa/cashshophandler.cpp +++ b/src/net/tmwa/cashshophandler.cpp @@ -42,4 +42,11 @@ void CashShopHandler::handleMessage(Net::MessageIn &msg A_UNUSED) { } +void CashShopHandler::buy(const int points A_UNUSED, + 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/cashshophandler.h b/src/net/tmwa/cashshophandler.h index 9b7cf86e6..cbd558d9d 100644 --- a/src/net/tmwa/cashshophandler.h +++ b/src/net/tmwa/cashshophandler.h @@ -37,6 +37,11 @@ class CashShopHandler final : public MessageHandler, A_DELETE_COPY(CashShopHandler) void handleMessage(Net::MessageIn &msg) override final; + + void buy(const int points, + const int itemId, + const unsigned char color, + const int amount) const override final; }; } // namespace TmwAthena |