summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/auctionhandler.cpp8
-rw-r--r--src/net/tmwa/auctionhandler.h4
2 files changed, 12 insertions, 0 deletions
diff --git a/src/net/tmwa/auctionhandler.cpp b/src/net/tmwa/auctionhandler.cpp
index 2c1dd981f..773c95f1d 100644
--- a/src/net/tmwa/auctionhandler.cpp
+++ b/src/net/tmwa/auctionhandler.cpp
@@ -77,4 +77,12 @@ void AuctionHandler::search(const AuctionSearchType::Type type A_UNUSED,
{
}
+void AuctionHandler::buy() const
+{
+}
+
+void AuctionHandler::sell() const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h
index 47f942aa8..f3c1fe9c8 100644
--- a/src/net/tmwa/auctionhandler.h
+++ b/src/net/tmwa/auctionhandler.h
@@ -57,6 +57,10 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler
const int auctionId,
const std::string &text,
const int page) const override final;
+
+ void buy() const override final;
+
+ void sell() const override final;
};
} // namespace TmwAthena