aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/IRegionCommsHost.cs
blob: 815bd8e81a178b456ad7cf79dabe7de9bd5c0b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Interfaces;
using OpenSim.Framework.Types;

namespace OpenSim.Framework
{
    public delegate void ExpectUserDelegate();
    public delegate void UpdateNeighbours(List<RegionInfo> neighbours);

    public interface IRegionCommsHost
    {
        event ExpectUserDelegate OnExpectUser;
        event GenericCall2 OnExpectChildAgent;
        event GenericCall2 OnAvatarCrossingIntoRegion;
        event UpdateNeighbours OnNeighboursUpdate;
    }
}