Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
572 B

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform
  3. {
  4. using Description = System.ComponentModel.DescriptionAttribute;
  5. public enum LivestreamingStartStatus : int
  6. {
  7. [Description("SUCCESS")]
  8. Success = 1,
  9. [Description("UNKNOWN")]
  10. Unknown = 0,
  11. [Description("NO_PACKAGE_SET")]
  12. NoPackageSet = -1,
  13. [Description("NO_FB_CONNECT")]
  14. NoFbConnect = -2,
  15. [Description("NO_SESSION_ID")]
  16. NoSessionId = -3,
  17. [Description("MISSING_PARAMETERS")]
  18. MissingParameters = -4,
  19. }
  20. }