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.

32 lines
970 B

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform.Models
  3. {
  4. using System;
  5. using System.Collections;
  6. using Oculus.Platform.Models;
  7. using System.Collections.Generic;
  8. using UnityEngine;
  9. public class MatchmakingStats
  10. {
  11. public readonly uint DrawCount;
  12. public readonly uint LossCount;
  13. public readonly uint SkillLevel;
  14. public readonly double SkillMean;
  15. public readonly double SkillStandardDeviation;
  16. public readonly uint WinCount;
  17. public MatchmakingStats(IntPtr o)
  18. {
  19. DrawCount = CAPI.ovr_MatchmakingStats_GetDrawCount(o);
  20. LossCount = CAPI.ovr_MatchmakingStats_GetLossCount(o);
  21. SkillLevel = CAPI.ovr_MatchmakingStats_GetSkillLevel(o);
  22. SkillMean = CAPI.ovr_MatchmakingStats_GetSkillMean(o);
  23. SkillStandardDeviation = CAPI.ovr_MatchmakingStats_GetSkillStandardDeviation(o);
  24. WinCount = CAPI.ovr_MatchmakingStats_GetWinCount(o);
  25. }
  26. }
  27. }