Add events to the estate interface to let interested modules know of

changes to estate settings
This commit is contained in:
Melanie Thielker
2010-05-04 20:57:31 +02:00
committed by Melanie
parent 9cf0077bf9
commit d997fc7b76
2 changed files with 41 additions and 0 deletions

View File

@@ -29,8 +29,13 @@ using OpenMetaverse;
namespace OpenSim.Region.Framework.Interfaces
{
public delegate void ChangeDelegate();
public interface IEstateModule : IRegionModule
{
event ChangeDelegate OnRegionInfoChange;
event ChangeDelegate OnEstateInfoChange;
uint GetRegionFlags();
bool IsManager(UUID avatarID);