diff options
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/InterSimComms/InterSimsCommsBase.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/InterSimComms/InterSimsCommsBase.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications/InterSimComms/InterSimsCommsBase.cs b/Common/OpenGrid.Framework.Communications/InterSimComms/InterSimsCommsBase.cs new file mode 100644 index 0000000..972506f --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/InterSimComms/InterSimsCommsBase.cs | |||
@@ -0,0 +1,19 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Framework.Types; | ||
5 | using OpenSim.Framework; | ||
6 | |||
7 | namespace OpenGrid.Framework.Communications | ||
8 | { | ||
9 | public abstract class InterSimsCommsBase | ||
10 | { | ||
11 | /// <summary> | ||
12 | /// Informs a neighbouring sim to expect a child agent | ||
13 | /// </summary> | ||
14 | /// <param name="regionHandle"></param> | ||
15 | /// <param name="agentData"></param> | ||
16 | /// <returns></returns> | ||
17 | public abstract bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData); | ||
18 | } | ||
19 | } | ||