aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Interfaces/Remoting/IRegionSimHost.cs
blob: c22fe29932128a5560ae73567621248fa8766f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenSim.Framework.Interfaces
{
    public interface IRegionSimHost
    {
        bool ExpectUser(string name);
        bool AgentCrossing(string name);
    }
}