OpenSimMirror/Common/OpenGrid.Framework.Communic.../RegionServerCommsManager.cs

25 lines
574 B
C#
Raw Normal View History

using System;
2007-05-31 13:45:18 +00:00
using System.Collections;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework;
using OpenSim.Framework.Interfaces;
using OpenSim.Framework.Types;
2007-05-31 12:52:17 +00:00
using libsecondlife;
namespace OpenGrid.Framework.Communications
{
public class RegionServerCommsManager
{
public UserServer.UserCommsManagerBase UserServer;
public GridServer.GridCommsManagerBase GridServer;
public InterSimsCommsBase InterSims;
public RegionServerCommsManager()
{
2007-05-31 13:45:18 +00:00
}
}
}