diff options
author | David Athay <ko2fan@gmail.com> | 2008-03-12 10:44:11 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-03-12 10:44:11 +0000 |
commit | 3a275cc81fe9aa1cb6736cdf12211e13e93cf2cf (patch) | |
tree | 7908381183fea865b53814e591aceae17c7a6cc2 /src/net/chatserver/guild.h | |
parent | 16e99dc852affbc8b149d35037694dcdd25948e6 (diff) | |
download | mana-3a275cc81fe9aa1cb6736cdf12211e13e93cf2cf.tar.gz mana-3a275cc81fe9aa1cb6736cdf12211e13e93cf2cf.tar.bz2 mana-3a275cc81fe9aa1cb6736cdf12211e13e93cf2cf.tar.xz mana-3a275cc81fe9aa1cb6736cdf12211e13e93cf2cf.zip |
Added ability to quit guilds.
Diffstat (limited to 'src/net/chatserver/guild.h')
-rw-r--r-- | src/net/chatserver/guild.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/net/chatserver/guild.h b/src/net/chatserver/guild.h index 849cd0a4..5800c738 100644 --- a/src/net/chatserver/guild.h +++ b/src/net/chatserver/guild.h @@ -37,21 +37,26 @@ namespace Net * Create guild. */ void createGuild(const std::string &name); - + /** * Invite a player to your guild. */ void invitePlayer(const std::string &name, short guildId); - + /** * Accept an invite another player has sent to join their guild. */ void acceptInvite(const std::string &name); - + /** * Get a list of members in a guild. */ void getGuildMembers(short guildId); + + /** + * Quit guild. + */ + void quitGuild(short guildId); } } } |