diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-02-13 21:37:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-02-13 21:37:35 +0300 |
commit | 68c2ea30403890497b05cd0c8ce9d8197324efef (patch) | |
tree | 1cbcf302014e717862a0b880d6670b17397af2a4 /src/emap/clan.h | |
parent | a72ce61cd2dd4981259a8b9a16801222b9775f08 (diff) | |
download | evol-hercules-68c2ea30403890497b05cd0c8ce9d8197324efef.tar.gz evol-hercules-68c2ea30403890497b05cd0c8ce9d8197324efef.tar.bz2 evol-hercules-68c2ea30403890497b05cd0c8ce9d8197324efef.tar.xz evol-hercules-68c2ea30403890497b05cd0c8ce9d8197324efef.zip |
Update for all players clan join/leave state.
Other players will see if player joined or left clan.
Diffstat (limited to 'src/emap/clan.h')
-rw-r--r-- | src/emap/clan.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/emap/clan.h b/src/emap/clan.h new file mode 100644 index 0000000..d07b1bd --- /dev/null +++ b/src/emap/clan.h @@ -0,0 +1,15 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 - 2015 Evol developers + +#ifndef EVOL_MAP_CLAN +#define EVOL_MAP_CLAN + +bool eclan_join_post(bool retVal, + struct map_session_data *sd, + int clan_id); + +bool eclan_leave_post(bool retVal, + struct map_session_data *sd, + bool first); + +#endif // EVOL_MAP_CLAN |