diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/cashshophandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/cashshophandler.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/cashshophandler.cpp b/src/net/tmwa/cashshophandler.cpp index cefeb496d..374c4d081 100644 --- a/src/net/tmwa/cashshophandler.cpp +++ b/src/net/tmwa/cashshophandler.cpp @@ -53,4 +53,8 @@ void CashShopHandler::close() const { } +void CashShopHandler::requestPoints() const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/cashshophandler.h b/src/net/tmwa/cashshophandler.h index 9a15a260e..47ea4b505 100644 --- a/src/net/tmwa/cashshophandler.h +++ b/src/net/tmwa/cashshophandler.h @@ -46,6 +46,8 @@ class CashShopHandler final : public MessageHandler, const int amount) const override final; void close() const override final; + + void requestPoints() const override final; }; } // namespace TmwAthena |