SimProfileBase.cs 589 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using libsecondlife;
  5. namespace OpenSim.Framework.Sims
  6. {
  7. public class SimProfileBase
  8. {
  9. public LLUUID UUID;
  10. public ulong regionhandle;
  11. public string regionname;
  12. public string sim_ip;
  13. public uint sim_port;
  14. public string caps_url;
  15. public uint RegionLocX;
  16. public uint RegionLocY;
  17. public string sendkey;
  18. public string recvkey;
  19. public bool online;
  20. public SimProfileBase()
  21. {
  22. }
  23. }
  24. }