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.

26 lines
695 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 LivestreamingVideoStats
  10. {
  11. public readonly int CommentCount;
  12. public readonly int ReactionCount;
  13. public readonly string TotalViews;
  14. public LivestreamingVideoStats(IntPtr o)
  15. {
  16. CommentCount = CAPI.ovr_LivestreamingVideoStats_GetCommentCount(o);
  17. ReactionCount = CAPI.ovr_LivestreamingVideoStats_GetReactionCount(o);
  18. TotalViews = CAPI.ovr_LivestreamingVideoStats_GetTotalViews(o);
  19. }
  20. }
  21. }