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.

35 lines
792 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 RichPresenceExtraContext : int
  6. {
  7. [Description("UNKNOWN")]
  8. Unknown,
  9. /// Display nothing
  10. [Description("NONE")]
  11. None,
  12. /// Display the current amount with the user over the max
  13. [Description("CURRENT_CAPACITY")]
  14. CurrentCapacity,
  15. /// Display how long ago the match/game/race/etc started
  16. [Description("STARTED_AGO")]
  17. StartedAgo,
  18. /// Display how soon the match/game/race/etc will end
  19. [Description("ENDING_IN")]
  20. EndingIn,
  21. /// Display that this user is looking for a match
  22. [Description("LOOKING_FOR_A_MATCH")]
  23. LookingForAMatch,
  24. }
  25. }