diff options
Diffstat (limited to 'Common/OpenSim.Framework/IRegionCommsHost.cs')
-rw-r--r-- | Common/OpenSim.Framework/IRegionCommsHost.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/IRegionCommsHost.cs b/Common/OpenSim.Framework/IRegionCommsHost.cs index 006661d..815bd8e 100644 --- a/Common/OpenSim.Framework/IRegionCommsHost.cs +++ b/Common/OpenSim.Framework/IRegionCommsHost.cs | |||
@@ -2,15 +2,18 @@ using System; | |||
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenSim.Framework.Interfaces; | 4 | using OpenSim.Framework.Interfaces; |
5 | using OpenSim.Framework.Types; | ||
5 | 6 | ||
6 | namespace OpenSim.Framework | 7 | namespace OpenSim.Framework |
7 | { | 8 | { |
8 | public delegate void ExpectUserDelegate(); | 9 | public delegate void ExpectUserDelegate(); |
10 | public delegate void UpdateNeighbours(List<RegionInfo> neighbours); | ||
9 | 11 | ||
10 | public interface IRegionCommsHost | 12 | public interface IRegionCommsHost |
11 | { | 13 | { |
12 | event ExpectUserDelegate OnExpectUser; | 14 | event ExpectUserDelegate OnExpectUser; |
13 | event GenericCall2 OnExpectChildAgent; | 15 | event GenericCall2 OnExpectChildAgent; |
14 | event GenericCall2 OnAvatarCrossingIntoRegion; | 16 | event GenericCall2 OnAvatarCrossingIntoRegion; |
17 | event UpdateNeighbours OnNeighboursUpdate; | ||
15 | } | 18 | } |
16 | } | 19 | } |