From 8e28076758837b2eb838b814284491dfedbad072 Mon Sep 17 00:00:00 2001 From: gareth Date: Sun, 18 Mar 2007 19:43:57 +0000 Subject: [PATCH] Added neighbourinfo class --- src/GridInterfaces/IGridServer.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/GridInterfaces/IGridServer.cs b/src/GridInterfaces/IGridServer.cs index b452802126..51f5054b40 100644 --- a/src/GridInterfaces/IGridServer.cs +++ b/src/GridInterfaces/IGridServer.cs @@ -132,5 +132,14 @@ namespace OpenSim.GridServers public bool child_agent; } + public class neighbourinfo + { + public neighbourinfo() { } + public ulong regionhandle; + public uint RegionLocX; + public uint RegionLocY; + public string sim_ip; + public uint sim_port; + } }