mirror of
https://github.com/opensim/opensim.git
synced 2026-06-06 02:55:47 +08:00
16 lines
347 B
C#
16 lines
347 B
C#
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();
|
|
}
|
|
}
|