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

17 lines
448 B
C#
Raw Normal View History

2007-06-24 18:40:02 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using OpenGrid.Framework.Communications;
namespace OpenGrid.Framework.Communications.OGS1
{
public class GridCommsManager : CommunicationsManager
{
public GridCommsManager()
{
GridServer = new OGS1GridServices();
InterRegion = new OGSInterSimComms();
UserServer = new OGSUserServices();
}
}
}