diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-14 01:32:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-14 01:32:24 +0300 |
commit | 2822bd9efe74131a6f0614f8092db9c990a0e708 (patch) | |
tree | c7b5aec485abd33e3a9d9761430a56e246445270 /src/net/pethandler.h | |
parent | acd87806b767d70c0676c0f800e23a7ce4f623e0 (diff) | |
download | plus-2822bd9efe74131a6f0614f8092db9c990a0e708.tar.gz plus-2822bd9efe74131a6f0614f8092db9c990a0e708.tar.bz2 plus-2822bd9efe74131a6f0614f8092db9c990a0e708.tar.xz plus-2822bd9efe74131a6f0614f8092db9c990a0e708.zip |
Add packet CMSG_PET_EVOLUTION 0x09fb.
Diffstat (limited to 'src/net/pethandler.h')
-rw-r--r-- | src/net/pethandler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/pethandler.h b/src/net/pethandler.h index 3116d7ba9..ba1502631 100644 --- a/src/net/pethandler.h +++ b/src/net/pethandler.h @@ -23,6 +23,8 @@ #include "being/being.h" +class Item; + namespace Net { @@ -59,6 +61,8 @@ class PetHandler notfinal virtual void unequip() const = 0; virtual void setDirection(const unsigned char type) const = 0; + + virtual void evolution(const Item *item) const = 0; }; } // namespace Net |