diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-08 20:42:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-08 20:42:40 +0300 |
commit | 1fcd75140b847a0e50584fc07fc47d90c9dd9fa8 (patch) | |
tree | 5c1b23c7eabc7d421f46d40ab0bf787ef7dac49b /src/net/playerhandler.h | |
parent | 53bc0b25c23f8f24d4119ae6fb5ba6ca0a91be19 (diff) | |
download | mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.tar.gz mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.tar.bz2 mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.tar.xz mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.zip |
Add small optimisations and fixes.
Diffstat (limited to 'src/net/playerhandler.h')
-rw-r--r-- | src/net/playerhandler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/playerhandler.h b/src/net/playerhandler.h index 524340458..2abd12d57 100644 --- a/src/net/playerhandler.h +++ b/src/net/playerhandler.h @@ -62,13 +62,13 @@ class PlayerHandler virtual void ignoreAll(bool ignore) = 0; - virtual bool canUseMagic() = 0; + virtual bool canUseMagic() const = 0; - virtual bool canCorrectAttributes() = 0; + virtual bool canCorrectAttributes() const = 0; - virtual int getJobLocation() = 0; + virtual int getJobLocation() const = 0; - virtual Vector getDefaultWalkSpeed() = 0; + virtual Vector getDefaultWalkSpeed() const = 0; }; } // namespace Net |