blob: aeaeb7bb25877c7e3000881695cf8f0287e5b868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
using OpenSim.Framework;
using OpenSim.Framework.Interfaces;
using OpenSim.Framework.Types;
namespace OpenGrid.Framework.Communications
{
public class RegionServerCommsLocal : RegionServerCommsManager
{
public SandBoxManager SandManager = new SandBoxManager();
public RegionServerCommsLocal()
{
UserServer = new UserServer.UserCommsManagerLocal(); //Local User Server
GridServer = new GridServer.GridCommsManagerLocal(SandManager); //Locl Grid Server
InterSims = new InterSimsCommsLocal(SandManager);
}
}
}
|