diff options
author | Asheraf <acheraf1998@gmail.com> | 2018-03-24 21:41:05 +0000 |
---|---|---|
committer | Asheraf <acheraf1998@gmail.com> | 2018-05-04 16:11:52 +0100 |
commit | 394e7f8752ae7c80786e202c8b859488db1af363 (patch) | |
tree | 3a329478e75881cba950165454b1f402fe38f171 /src/map/clif.h | |
parent | d6785d389cbee4f34078f6762626ca61b2d6cc25 (diff) | |
download | hercules-394e7f8752ae7c80786e202c8b859488db1af363.tar.gz hercules-394e7f8752ae7c80786e202c8b859488db1af363.tar.bz2 hercules-394e7f8752ae7c80786e202c8b859488db1af363.tar.xz hercules-394e7f8752ae7c80786e202c8b859488db1af363.zip |
Implementation of Private AirShip
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index f0eaaf6eb..23b335376 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -589,6 +589,18 @@ enum ui_types { ATTENDANCE_UI }; /** +* Private Airship Responds +**/ +enum private_airship { + P_AIRSHIP_NONE, + P_AIRSHIP_RETRY, + P_AIRSHIP_INVALID_START_MAP, + P_AIRSHIP_INVALID_END_MAP, + P_AIRSHIP_ITEM_NOT_ENOUGH, + P_AIRSHIP_ITEM_INVALID +}; + +/** * Structures **/ typedef void (*pFunc)(int, struct map_session_data *); //cant help but put it first @@ -1450,6 +1462,8 @@ struct clif_interface { void (*open_ui) (struct map_session_data *sd, int8 UIType); void (*pAttendanceRewardRequest) (int fd, struct map_session_data *sd); void (*ui_action) (struct map_session_data *sd, int32 UIType, int32 data); + void (*pPrivateAirshipRequest) (int fd, struct map_session_data *sd); + void (*PrivateAirshipResponse) (struct map_session_data *sd, uint32 flag); }; #ifdef HERCULES_CORE |