using System; using OpenSim.Framework.Servers; namespace OpenSim.Grid.GridServer { public interface IGridCore { T Get(); void RegisterInterface(T iface); bool TryGet(out T iface); BaseHttpServer GetHttpServer(); } }