Files
opensim/OpenSim/Grid/GridServer/IGridMessagingModule.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

12 lines
244 B
C#

using System;
using System.Collections.Generic;
using OpenSim.Framework.Servers;
namespace OpenSim.Grid.GridServer
{
public interface IGridMessagingModule
{
List<MessageServerInfo> MessageServers { get; }
}
}