aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs')
-rw-r--r--Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs b/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs
new file mode 100644
index 0000000..0024d14
--- /dev/null
+++ b/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs
@@ -0,0 +1,19 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenSim.Framework.Types;
5using OpenGrid.Framework.Communications;
6namespace OpenGrid.Framework.Communications.OGS1
7{
8 public class OGSInterSimComms : IInterRegionCommunications
9 {
10 public bool InformRegionOfChildAgent(ulong regionHandle, AgentCircuitData agentData)
11 {
12 return false;
13 }
14 public bool ExpectAvatarCrossing(ulong regionHandle, libsecondlife.LLUUID agentID, libsecondlife.LLVector3 position)
15 {
16 return false;
17 }
18 }
19}