Files
opensim/OpenSim/Grid/GridServer/IGridCore.cs
MW 25661b611d Refactored the GridServer into a GridDBService and a set of "modules".
Currently they aren't plugin modules as the support for dynamically loading them isn't complete.
2009-02-21 13:44:03 +00:00

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();
}
}