diff options
Diffstat (limited to 'src/net/gamehandler.h')
-rw-r--r-- | src/net/gamehandler.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/gamehandler.h b/src/net/gamehandler.h index 599e89b8..40e4b099 100644 --- a/src/net/gamehandler.h +++ b/src/net/gamehandler.h @@ -47,6 +47,16 @@ class GameHandler * Tells whether the protocol is using the MP status bar */ virtual bool canUseMagicBar() const = 0; + + /** + * Tells the range is pixel where the player can pickup items from. + */ + virtual int getPickupRange() const = 0; + + /** + * Tells the range is pixel where the player can talk to an NPC from. + */ + virtual int getNpcTalkRange() const = 0; }; } // namespace Net |