NeighbourInfo.cs 384 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OpenSim.Framework.Interfaces
  5. {
  6. public class NeighbourInfo
  7. {
  8. public NeighbourInfo()
  9. {
  10. }
  11. public ulong regionhandle;
  12. public uint RegionLocX;
  13. public uint RegionLocY;
  14. public string sim_ip;
  15. public uint sim_port;
  16. }
  17. }