summaryrefslogtreecommitdiff
path: root/src/map/clif.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-09-23 16:04:42 +0200
committerGitHub <noreply@github.com>2018-09-23 16:04:42 +0200
commit0ffeb619e8ee46ca4a2f7a424211ec5c6d374e0c (patch)
treed3835a540641a99b2c155bcf20b53cdd1d984d24 /src/map/clif.h
parentf82ab088af915d04c77a0d167bdd8b4ef719086c (diff)
parent5f1700478068251ba98c8a612f1744410352d076 (diff)
downloadhercules-0ffeb619e8ee46ca4a2f7a424211ec5c6d374e0c.tar.gz
hercules-0ffeb619e8ee46ca4a2f7a424211ec5c6d374e0c.tar.bz2
hercules-0ffeb619e8ee46ca4a2f7a424211ec5c6d374e0c.tar.xz
hercules-0ffeb619e8ee46ca4a2f7a424211ec5c6d374e0c.zip
Merge pull request #2195 from Asheraf/md_command
Implement PACKET_CZ_MEMORIALDUNGEON_COMMAND
Diffstat (limited to 'src/map/clif.h')
-rw-r--r--src/map/clif.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h
index 13435e82e..86e53e1e9 100644
--- a/src/map/clif.h
+++ b/src/map/clif.h
@@ -670,6 +670,10 @@ enum stylist_shop {
STYLIST_SHOP_FAILURE
};
+enum memorial_dungeon_command {
+ COMMAND_MEMORIALDUNGEON_DESTROY_FORCE = 0x3,
+};
+
/**
* Clif.c Interface
**/
@@ -1544,6 +1548,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