Small interface addition

0.6.3-post-fixes
Melanie Thielker 2009-01-20 21:45:44 +00:00
parent 6495ff9624
commit 5ae3364152
1 changed files with 4 additions and 0 deletions

View File

@ -32,8 +32,12 @@ using OpenMetaverse;
namespace OpenSim.Region.Interfaces namespace OpenSim.Region.Interfaces
{ {
public delegate void NewGroupNotice(UUID groupID, UUID noticeID);
public interface IGroupsModule public interface IGroupsModule
{ {
event NewGroupNotice OnNewGroupNotice;
void ActivateGroup(IClientAPI remoteClient, UUID groupID); void ActivateGroup(IClientAPI remoteClient, UUID groupID);
List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID); List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID);
List<GroupMembersData> GroupMembersRequest(IClientAPI remoteClient, UUID groupID); List<GroupMembersData> GroupMembersRequest(IClientAPI remoteClient, UUID groupID);