aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/MessagingServer/IUGAIMCore.cs
blob: 5ab1166764025887a35ac3580990d71612a0598d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Servers;

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