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

20 lines
544 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2007-06-10 12:01:09 +00:00
using OpenSim.Framework;
using OpenSim.Framework.Types;
namespace OpenGrid.Framework.Communications
{
public class RegionServerCommsOGS : RegionServerCommsManager
{
public RegionServerCommsOGS()
{
UserServer = new UserServer.UserCommsManagerOGS(); //Remote User Server
GridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server
InterSims = new InterSimsCommsOGS();
}
2007-06-10 12:01:09 +00:00
}
}