summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/mailhandler.cpp6
-rw-r--r--src/net/tmwa/mailhandler.h4
2 files changed, 10 insertions, 0 deletions
diff --git a/src/net/tmwa/mailhandler.cpp b/src/net/tmwa/mailhandler.cpp
index dfd69976d..a80400440 100644
--- a/src/net/tmwa/mailhandler.cpp
+++ b/src/net/tmwa/mailhandler.cpp
@@ -71,4 +71,10 @@ void MailHandler::resetAttach(const int flag A_UNUSED)
{
}
+void MailHandler::send(const std::string &name A_UNUSED,
+ const std::string &title A_UNUSED,
+ std::string message A_UNUSED)
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/mailhandler.h b/src/net/tmwa/mailhandler.h
index fb0892211..fb90de199 100644
--- a/src/net/tmwa/mailhandler.h
+++ b/src/net/tmwa/mailhandler.h
@@ -50,6 +50,10 @@ class MailHandler final : public MessageHandler, public Net::MailHandler
void setAttach(const int index, const int amount) override final;
void resetAttach(const int flag) override final;
+
+ void send(const std::string &name,
+ const std::string &title,
+ std::string message) override final;
};
} // namespace TmwAthena