aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs
blob: 0024d1491becb4ddf17c9ff7c7e49bb6e91aa453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Types;
using OpenGrid.Framework.Communications;
namespace OpenGrid.Framework.Communications.OGS1
{
    public class OGSInterSimComms  : IInterRegionCommunications
    {
        public bool InformRegionOfChildAgent(ulong regionHandle, AgentCircuitData agentData)
        {
            return false;
        }
        public bool ExpectAvatarCrossing(ulong regionHandle, libsecondlife.LLUUID agentID, libsecondlife.LLVector3 position)
        {
            return false;
        }
    }
}