diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/mail2handler.cpp | 5 | ||||
-rw-r--r-- | src/net/tmwa/mail2handler.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/tmwa/mail2handler.cpp b/src/net/tmwa/mail2handler.cpp index 0913f4c5c..0440613e3 100644 --- a/src/net/tmwa/mail2handler.cpp +++ b/src/net/tmwa/mail2handler.cpp @@ -56,4 +56,9 @@ void Mail2Handler::sendMail(const std::string &to A_UNUSED, { } +void Mail2Handler::nextPage(const int openType A_UNUSED, + const int64_t mailId A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/mail2handler.h b/src/net/tmwa/mail2handler.h index 3c28371bf..37e220372 100644 --- a/src/net/tmwa/mail2handler.h +++ b/src/net/tmwa/mail2handler.h @@ -47,6 +47,9 @@ class Mail2Handler final : public Net::Mail2Handler const std::string &title, const std::string &body, const int64_t &money) const override final; + + void nextPage(const int openType, + const int64_t mailId) const override final; }; } // namespace TmwAthena |