WifiDisplayModel.cs 737 B

1234567891011121314151617181920212223
  1. namespace Unity.XR.PICO.TOBSupport
  2. {
  3. public class WifiDisplayModel
  4. {
  5. public static int STATUS_NOT_CONNECT = -1;
  6. public static int STATUS_NONE = 0;
  7. public static int STATUS_SCANNING = 1;
  8. public static int STATUS_CONNECTING = 2;
  9. public static int STATUS_AVAILABLE = 3;
  10. public static int STATUS_NOT_AVAILABLE = 4;
  11. public static int STATUS_IN_USE = 5;
  12. public static int STATUS_CONNECTED = 6;
  13. public string deviceAddress;
  14. public string deviceName;
  15. public bool isAvailable;
  16. public bool canConnect;
  17. public bool isRemembered;
  18. public int statusCode;
  19. public string status;
  20. public string description;
  21. }
  22. }