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

namespace OpenSim.Framework
{
    public delegate void ExpectUserDelegate();

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