mirror of
https://github.com/opensim/opensim.git
synced 2026-06-02 08:35:35 +08:00
20 lines
384 B
C#
20 lines
384 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Framework.Interfaces
|
|
{
|
|
public class NeighbourInfo
|
|
{
|
|
public NeighbourInfo()
|
|
{
|
|
}
|
|
|
|
public ulong regionhandle;
|
|
public uint RegionLocX;
|
|
public uint RegionLocY;
|
|
public string sim_ip;
|
|
public uint sim_port;
|
|
}
|
|
}
|