diff options
Diffstat (limited to 'src/net/eathena/beingrecv.h')
-rw-r--r-- | src/net/eathena/beingrecv.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/net/eathena/beingrecv.h b/src/net/eathena/beingrecv.h index 0f2b6fab7..1a005e31f 100644 --- a/src/net/eathena/beingrecv.h +++ b/src/net/eathena/beingrecv.h @@ -110,6 +110,7 @@ namespace EAthena void processGraffiti(Net::MessageIn &msg); void processSkillDamage(Net::MessageIn &msg); void processNavigateTo(Net::MessageIn &msg); + Being *createBeing2(Net::MessageIn &msg, const BeingId id, const int32_t job, @@ -117,7 +118,13 @@ namespace EAthena void applyPlayerAction(Net::MessageIn &msg, Being *const being, const uint8_t type); - + void processSkillCastingContinue(Net::MessageIn &msg, + const BeingId srcId, + const BeingId dstId, + const int dstX, + const int dstY, + const int skillId, + const int castTime); } // namespace BeingRecv } // namespace EAthena |