diff options
author | Asheraf <acheraf1998@gmail.com> | 2018-08-28 14:45:42 +0100 |
---|---|---|
committer | Asheraf <acheraf1998@gmail.com> | 2018-08-28 20:19:56 +0100 |
commit | 5f1700478068251ba98c8a612f1744410352d076 (patch) | |
tree | 0b154062a1cfef6540dd1a778ebbc0de88601ca1 /src/map/clif.h | |
parent | 60382483cc141a8f58859cb972db78c0aaaa08c4 (diff) | |
download | hercules-5f1700478068251ba98c8a612f1744410352d076.tar.gz hercules-5f1700478068251ba98c8a612f1744410352d076.tar.bz2 hercules-5f1700478068251ba98c8a612f1744410352d076.tar.xz hercules-5f1700478068251ba98c8a612f1744410352d076.zip |
Implement PACKET_CZ_MEMORIALDUNGEON_COMMAND
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index e3b2a90d3..13693bd11 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -660,6 +660,10 @@ enum stylist_shop { STYLIST_SHOP_FAILURE }; +enum memorial_dungeon_command { + COMMAND_MEMORIALDUNGEON_DESTROY_FORCE = 0x3, +}; + /** * Clif.c Interface **/ @@ -1527,6 +1531,7 @@ struct clif_interface { void (*pPetEvolution) (int fd, struct map_session_data *sd); void (*petEvolutionResult) (int fd, enum pet_evolution_result result); void (*party_dead_notification) (struct map_session_data *sd); + void (*pMemorialDungeonCommand) (int fd, struct map_session_data *sd); }; #ifdef HERCULES_CORE |