OpenSimMirror/OpenSim.Framework/Types/NeighbourInfo.cs

20 lines
379 B
C#
Raw Normal View History

2007-03-22 10:11:15 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Framework.Types
2007-03-22 10:11:15 +00:00
{
public class NeighbourInfo
{
public NeighbourInfo()
{
}
public ulong regionhandle;
public uint RegionLocX;
public uint RegionLocY;
public string sim_ip;
public uint sim_port;
}
}