summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/bankhandler.cpp4
-rw-r--r--src/net/tmwa/bankhandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/bankhandler.cpp b/src/net/tmwa/bankhandler.cpp
index beff54da4..69f4250d8 100644
--- a/src/net/tmwa/bankhandler.cpp
+++ b/src/net/tmwa/bankhandler.cpp
@@ -46,4 +46,8 @@ void BankHandler::deposit(const int money A_UNUSED) const
{
}
+void BankHandler::withdraw(const int money A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/bankhandler.h b/src/net/tmwa/bankhandler.h
index 6da1394b7..a439ac381 100644
--- a/src/net/tmwa/bankhandler.h
+++ b/src/net/tmwa/bankhandler.h
@@ -39,6 +39,8 @@ class BankHandler final : public MessageHandler,
void handleMessage(Net::MessageIn &msg) override final;
void deposit(const int money) const override final;
+
+ void withdraw(const int money) const override final;
};
} // namespace TmwAthena