using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Types;
using OpenSim.Framework;
namespace OpenGrid.Framework.Communications
{
public abstract class InterSimsCommsBase
{
///
/// Informs a neighbouring sim to expect a child agent
///
///
///
///
public abstract bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData);
}
}