blob: acf8911638f80e73a1e99a6e0168fe8a78141321 (
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
25
26
|
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework;
using OpenSim.Framework.Types;
namespace OpenGrid.Framework.Communications.GridServer
{
public class GridCommsManagerOGS : GridCommsManagerBase
{
public GridCommsManagerOGS()
{
}
public override RegionCommsHostBase RegisterRegion(RegionInfo regionInfo)
{
return null;
}
public override List<RegionInfo> RequestNeighbours(RegionInfo regionInfo)
{
return null;
}
}
}
|