OpenSimMirror/Common/OpenSim.Framework/IRegionCommsHost.cs

20 lines
598 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2007-05-31 12:05:32 +00:00
using OpenSim.Framework.Interfaces;
2007-05-31 12:52:17 +00:00
using OpenSim.Framework.Types;
namespace OpenSim.Framework
{
public delegate void ExpectUserDelegate(ulong regionHandle, AgentCircuitData agent);
2007-05-31 12:52:17 +00:00
public delegate void UpdateNeighbours(List<RegionInfo> neighbours);
public interface IRegionCommsHost
{
2007-05-31 12:05:32 +00:00
event ExpectUserDelegate OnExpectUser;
event GenericCall2 OnExpectChildAgent;
event GenericCall2 OnAvatarCrossingIntoRegion;
2007-05-31 12:52:17 +00:00
event UpdateNeighbours OnNeighboursUpdate;
}
}