mirror of
https://github.com/opensim/opensim.git
synced 2026-06-26 00:15:39 +08:00
25 lines
574 B
C#
25 lines
574 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenSim.Framework;
|
|
using OpenSim.Framework.Interfaces;
|
|
using OpenSim.Framework.Types;
|
|
using libsecondlife;
|
|
|
|
namespace OpenGrid.Framework.Communications
|
|
{
|
|
|
|
public class RegionServerCommsManager
|
|
{
|
|
public UserServer.UserCommsManagerBase UserServer;
|
|
public GridServer.GridCommsManagerBase GridServer;
|
|
public InterSimsCommsBase InterSims;
|
|
|
|
public RegionServerCommsManager()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|