aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Interfaces/IGroupsModule.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-01-20 21:45:44 +0000
committerMelanie Thielker2009-01-20 21:45:44 +0000
commit5ae3364152d8dbbf8a13a1ea75f142c1d33197bd (patch)
tree7c6617a05b7ee93bb285d5d3bef33fa30888bf18 /OpenSim/Region/Interfaces/IGroupsModule.cs
parent* Apply http://opensimulator.org/mantis/view.php?id=3021 (diff)
downloadopensim-SC_OLD-5ae3364152d8dbbf8a13a1ea75f142c1d33197bd.zip
opensim-SC_OLD-5ae3364152d8dbbf8a13a1ea75f142c1d33197bd.tar.gz
opensim-SC_OLD-5ae3364152d8dbbf8a13a1ea75f142c1d33197bd.tar.bz2
opensim-SC_OLD-5ae3364152d8dbbf8a13a1ea75f142c1d33197bd.tar.xz
Small interface addition
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Interfaces/IGroupsModule.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Interfaces/IGroupsModule.cs b/OpenSim/Region/Interfaces/IGroupsModule.cs
index 97c39b7..7897bfe 100644
--- a/OpenSim/Region/Interfaces/IGroupsModule.cs
+++ b/OpenSim/Region/Interfaces/IGroupsModule.cs
@@ -32,8 +32,12 @@ using OpenMetaverse;
32 32
33namespace OpenSim.Region.Interfaces 33namespace OpenSim.Region.Interfaces
34{ 34{
35 public delegate void NewGroupNotice(UUID groupID, UUID noticeID);
36
35 public interface IGroupsModule 37 public interface IGroupsModule
36 { 38 {
39 event NewGroupNotice OnNewGroupNotice;
40
37 void ActivateGroup(IClientAPI remoteClient, UUID groupID); 41 void ActivateGroup(IClientAPI remoteClient, UUID groupID);
38 List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID); 42 List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID);
39 List<GroupMembersData> GroupMembersRequest(IClientAPI remoteClient, UUID groupID); 43 List<GroupMembersData> GroupMembersRequest(IClientAPI remoteClient, UUID groupID);