aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/IUGAIMCore.cs
blob: 12cd19bb8db7d865474b1466c4c400d4010051b1 (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 IUGAIMCore
    {
        T Get<T>();
        void RegisterInterface<T>(T iface);
        bool TryGet<T>(out T iface);
        BaseHttpServer GetHttpServer();
    }
}