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