aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/IGridCore.cs
blob: dd0d140818510fce667867d7564fe3449bdd2bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using OpenSim.Framework.Servers;

namespace OpenSim.Grid.GridServer
{
    public interface IGridCore
    {
        T Get<T>();
        void RegisterInterface<T>(T iface);
        bool TryGet<T>(out T iface);
        BaseHttpServer GetHttpServer();
    }
}