SimProfileBase.cs 649 B

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