Commit the group deeding support, thank you, mcortez

This commit is contained in:
Melanie Thielker
2009-04-15 21:07:09 +00:00
parent b018f45b70
commit 7306b73f02
7 changed files with 43 additions and 1 deletions

View File

@@ -64,5 +64,14 @@ namespace OpenSim.Region.Framework.Interfaces
void LeaveGroupRequest(IClientAPI remoteClient, UUID GroupID);
void EjectGroupMemberRequest(IClientAPI remoteClient, UUID GroupID, UUID EjecteeID);
void InviteGroupRequest(IClientAPI remoteClient, UUID GroupID, UUID InviteeID, UUID RoleID);
/// <summary>
/// Retrieve group profile.
/// </summary>
/// <param name="GroupID"></param>
/// <param name="GroupProfile"></param>
/// <returns>False if group does not exist</returns>
bool GetGroupProfile(UUID GroupID, out GroupProfileData GroupProfile);
}
}