diff options
author | Melanie Thielker | 2009-04-15 21:07:09 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-04-15 21:07:09 +0000 |
commit | 7306b73f02231687577425cb2e905c51bfbfdfc1 (patch) | |
tree | c6d29aee37a9cfbeba38ebe3c669decafcbdfca2 /OpenSim/Region/Framework | |
parent | Make sim health data more useful (diff) | |
download | opensim-SC_OLD-7306b73f02231687577425cb2e905c51bfbfdfc1.zip opensim-SC_OLD-7306b73f02231687577425cb2e905c51bfbfdfc1.tar.gz opensim-SC_OLD-7306b73f02231687577425cb2e905c51bfbfdfc1.tar.bz2 opensim-SC_OLD-7306b73f02231687577425cb2e905c51bfbfdfc1.tar.xz |
Commit the group deeding support, thank you, mcortez
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IGroupsModule.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs index dad08ba..85b8cac 100644 --- a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs | |||
@@ -64,5 +64,14 @@ namespace OpenSim.Region.Framework.Interfaces | |||
64 | void LeaveGroupRequest(IClientAPI remoteClient, UUID GroupID); | 64 | void LeaveGroupRequest(IClientAPI remoteClient, UUID GroupID); |
65 | void EjectGroupMemberRequest(IClientAPI remoteClient, UUID GroupID, UUID EjecteeID); | 65 | void EjectGroupMemberRequest(IClientAPI remoteClient, UUID GroupID, UUID EjecteeID); |
66 | void InviteGroupRequest(IClientAPI remoteClient, UUID GroupID, UUID InviteeID, UUID RoleID); | 66 | void InviteGroupRequest(IClientAPI remoteClient, UUID GroupID, UUID InviteeID, UUID RoleID); |
67 | |||
68 | |||
69 | /// <summary> | ||
70 | /// Retrieve group profile. | ||
71 | /// </summary> | ||
72 | /// <param name="GroupID"></param> | ||
73 | /// <param name="GroupProfile"></param> | ||
74 | /// <returns>False if group does not exist</returns> | ||
75 | bool GetGroupProfile(UUID GroupID, out GroupProfileData GroupProfile); | ||
67 | } | 76 | } |
68 | } | 77 | } |