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
808 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 AssetFileDownloadCancelResult
  10. {
  11. public readonly UInt64 AssetFileId;
  12. public readonly UInt64 AssetId;
  13. public readonly string Filepath;
  14. public readonly bool Success;
  15. public AssetFileDownloadCancelResult(IntPtr o)
  16. {
  17. AssetFileId = CAPI.ovr_AssetFileDownloadCancelResult_GetAssetFileId(o);
  18. AssetId = CAPI.ovr_AssetFileDownloadCancelResult_GetAssetId(o);
  19. Filepath = CAPI.ovr_AssetFileDownloadCancelResult_GetFilepath(o);
  20. Success = CAPI.ovr_AssetFileDownloadCancelResult_GetSuccess(o);
  21. }
  22. }
  23. }