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
parent ce86d39c70
commit 97bbce92a8
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);