summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-26 22:41:39 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-26 22:41:39 +0300
commit2f63276d3c09246878fb2470c3c047c7d4144a2d (patch)
treeb96ab3d64657a27854302aca637cb6f8c281fdd5 /src/net/tmwa
parentd6f607842bb91d2f76b6d677e4e899de50fa27cf (diff)
downloadplus-2f63276d3c09246878fb2470c3c047c7d4144a2d.tar.gz
plus-2f63276d3c09246878fb2470c3c047c7d4144a2d.tar.bz2
plus-2f63276d3c09246878fb2470c3c047c7d4144a2d.tar.xz
plus-2f63276d3c09246878fb2470c3c047c7d4144a2d.zip
eathena: add packet CMSG_NPC_CASH_SHOP_CLOSE 0x084a.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/cashshophandler.cpp4
-rw-r--r--src/net/tmwa/cashshophandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/cashshophandler.cpp b/src/net/tmwa/cashshophandler.cpp
index d3208325b..cefeb496d 100644
--- a/src/net/tmwa/cashshophandler.cpp
+++ b/src/net/tmwa/cashshophandler.cpp
@@ -49,4 +49,8 @@ void CashShopHandler::buyItem(const int points A_UNUSED,
{
}
+void CashShopHandler::close() const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/cashshophandler.h b/src/net/tmwa/cashshophandler.h
index e1a38e1c3..9a15a260e 100644
--- a/src/net/tmwa/cashshophandler.h
+++ b/src/net/tmwa/cashshophandler.h
@@ -44,6 +44,8 @@ class CashShopHandler final : public MessageHandler,
const int itemId,
const unsigned char color,
const int amount) const override final;
+
+ void close() const override final;
};
} // namespace TmwAthena