diff options
Diffstat (limited to 'src/net/tmwa/bankhandler.h')
-rw-r--r-- | src/net/tmwa/bankhandler.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/tmwa/bankhandler.h b/src/net/tmwa/bankhandler.h index e072b24ae..c71371dbe 100644 --- a/src/net/tmwa/bankhandler.h +++ b/src/net/tmwa/bankhandler.h @@ -35,15 +35,15 @@ class BankHandler final : public Net::BankHandler A_DELETE_COPY(BankHandler) - void deposit(const int money) const final A_CONST; + void deposit(const int money) const override final A_CONST; - void withdraw(const int money) const final A_CONST; + void withdraw(const int money) const override final A_CONST; - void check() const final A_CONST; + void check() const override final A_CONST; - void open() const final A_CONST; + void open() const override final A_CONST; - void close() const final A_CONST; + void close() const override final A_CONST; }; } // namespace TmwAthena |