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
906 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 AssetFileDownloadUpdate
  10. {
  11. public readonly UInt64 AssetFileId;
  12. public readonly UInt64 AssetId;
  13. public readonly uint BytesTotal;
  14. public readonly int BytesTransferred;
  15. public readonly bool Completed;
  16. public AssetFileDownloadUpdate(IntPtr o)
  17. {
  18. AssetFileId = CAPI.ovr_AssetFileDownloadUpdate_GetAssetFileId(o);
  19. AssetId = CAPI.ovr_AssetFileDownloadUpdate_GetAssetId(o);
  20. BytesTotal = CAPI.ovr_AssetFileDownloadUpdate_GetBytesTotal(o);
  21. BytesTransferred = CAPI.ovr_AssetFileDownloadUpdate_GetBytesTransferred(o);
  22. Completed = CAPI.ovr_AssetFileDownloadUpdate_GetCompleted(o);
  23. }
  24. }
  25. }