mirror of
https://github.com/opensim/opensim.git
synced 2026-06-08 12:45:43 +08:00
Currently they aren't plugin modules as the support for dynamically loading them isn't complete.
14 lines
286 B
C#
14 lines
286 B
C#
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();
|
|
}
|
|
}
|