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

16 lines
434 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenGrid.Framework.Communications
{
public class RegionServerCommsOGS : RegionServerCommsManager
{
public RegionServerCommsOGS()
{
userServer = new UserServer.UserCommsManagerOGS(); //Remote User Server
gridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server
}
}
}