From f2b175ef08066649a13b6a42f0a59d9bee503638 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sun, 9 Dec 2007 05:59:49 +0000 Subject: * Added some inter-region comms glue for allowing sims to chat amongst themsevles about an agent behind the agent's back. * Will be using this glue Tomorrow/today to tell other regions what the agent's draw distance is and what region they're actually in so the region can make decisions on what prim to send, if any. --- OpenSim/Framework/IRegionCommsListener.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenSim/Framework/IRegionCommsListener.cs') diff --git a/OpenSim/Framework/IRegionCommsListener.cs b/OpenSim/Framework/IRegionCommsListener.cs index 53d0059..5f20362 100644 --- a/OpenSim/Framework/IRegionCommsListener.cs +++ b/OpenSim/Framework/IRegionCommsListener.cs @@ -48,6 +48,8 @@ namespace OpenSim.Framework public delegate bool RegionUp(RegionInfo region); + public delegate bool ChildAgentUpdate(ulong regionHandle, ChildAgentDataUpdate cAgentData); + public interface IRegionCommsListener @@ -62,6 +64,7 @@ namespace OpenSim.Framework event UpdateNeighbours OnNeighboursUpdate; event CloseAgentConnection OnCloseAgentConnection; event RegionUp OnRegionUp; + event ChildAgentUpdate OnChildAgentUpdate; } } \ No newline at end of file -- cgit v1.1