aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
blob: 0a0847ef5cabac69963998f1592702435ed18fad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using OpenSim.Framework.Communications;
using OpenSim.Framework.Types;

namespace OpenSim.Region.Communications.OGS1
{
    public class CommunicationsOGS1 : CommunicationsManager
    {
        private OGS1GridServices gridInterComms = new OGS1GridServices();
        public CommunicationsOGS1(NetworkServersInfo serversInfo) :base(serversInfo)
        {
            GridServer = gridInterComms;
            InterRegion = gridInterComms;
            UserServer = new OGS1UserServices(this);
        }
    }
}