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.

28 lines
765 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 ApplicationVersion
  10. {
  11. public readonly int CurrentCode;
  12. public readonly string CurrentName;
  13. public readonly int LatestCode;
  14. public readonly string LatestName;
  15. public ApplicationVersion(IntPtr o)
  16. {
  17. CurrentCode = CAPI.ovr_ApplicationVersion_GetCurrentCode(o);
  18. CurrentName = CAPI.ovr_ApplicationVersion_GetCurrentName(o);
  19. LatestCode = CAPI.ovr_ApplicationVersion_GetLatestCode(o);
  20. LatestName = CAPI.ovr_ApplicationVersion_GetLatestName(o);
  21. }
  22. }
  23. }