diff options
author | Melanie Thielker | 2009-01-20 21:45:44 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-01-20 21:45:44 +0000 |
commit | 5ae3364152d8dbbf8a13a1ea75f142c1d33197bd (patch) | |
tree | 7c6617a05b7ee93bb285d5d3bef33fa30888bf18 /OpenSim | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=3021 (diff) | |
download | opensim-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 'OpenSim')
-rw-r--r-- | OpenSim/Region/Interfaces/IGroupsModule.cs | 4 |
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 | ||
33 | namespace OpenSim.Region.Interfaces | 33 | namespace 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); |