aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Interfaces/IGroupsModule.cs
diff options
context:
space:
mode:
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);