summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-10 20:54:27 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-10 20:54:27 +0300
commitfc199c3ae60d4c4cf76236c7f4891113daa3cbc4 (patch)
tree0ecb3d397a9224c280bebfa22aeb1588edf63371 /src/net/eathena/skillhandler.h
parentb748c8947e6225376e77b09f4c7c335985d934ef (diff)
downloadManaVerse-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.tar.gz
ManaVerse-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.tar.bz2
ManaVerse-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.tar.xz
ManaVerse-fc199c3ae60d4c4cf76236c7f4891113daa3cbc4.zip
improve skillhandler class.
Diffstat (limited to 'src/net/eathena/skillhandler.h')
-rw-r--r--src/net/eathena/skillhandler.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/net/eathena/skillhandler.h b/src/net/eathena/skillhandler.h
index be2025da7..a44718d3f 100644
--- a/src/net/eathena/skillhandler.h
+++ b/src/net/eathena/skillhandler.h
@@ -40,13 +40,15 @@ class SkillHandler final : public MessageHandler, public Ea::SkillHandler
A_DELETE_COPY(SkillHandler)
- void handleMessage(Net::MessageIn &msg);
+ void handleMessage(Net::MessageIn &msg) override;
- void useBeing(int id, int level, int beingId);
+ void useBeing(const int id, const int level,
+ const int beingId) const override;
- void usePos(int id, int level, int x, int y);
+ void usePos(const int id, const int level,
+ const int x, const int y) const override;
- void useMap(int id, const std::string &map);
+ void useMap(const int id, const std::string &map) const override;
};
} // namespace EAthena