summaryrefslogtreecommitdiff
path: root/src/net/tmwa/mercenaryhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/mercenaryhandler.h')
-rw-r--r--src/net/tmwa/mercenaryhandler.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/net/tmwa/mercenaryhandler.h b/src/net/tmwa/mercenaryhandler.h
index 58f119e99..2c1bbc99f 100644
--- a/src/net/tmwa/mercenaryhandler.h
+++ b/src/net/tmwa/mercenaryhandler.h
@@ -35,20 +35,22 @@ class MercenaryHandler final : public Net::MercenaryHandler
A_DELETE_COPY(MercenaryHandler)
- void fire() override final;
+ void fire() override final A_CONST;
- void moveToMaster() const override final;
+ void moveToMaster() const override final A_CONST;
- void move(const int x, const int y) const override final;
+ void move(const int x, const int y) const override final A_CONST;
void attack(const BeingId targetId,
- const Keep keep) const override final;
+ const Keep keep) const override final A_CONST;
- void talk(const std::string &restrict text) const override final;
+ void talk(const std::string &restrict text) const override final
+ A_CONST;
- void emote(const uint8_t emoteId) const override final;
+ void emote(const uint8_t emoteId) const override final A_CONST;
- void setDirection(const unsigned char type) const override final;
+ void setDirection(const unsigned char type) const override final
+ A_CONST;
};
} // namespace TmwAthena