Initial Commit

This commit is contained in:
Toomas Tamm
2020-11-28 16:54:41 +02:00
parent 97292ee26e
commit ea967135f2
4217 changed files with 2945663 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform.Models
{
using System;
using System.Collections;
using Oculus.Platform.Models;
using System.Collections.Generic;
using UnityEngine;
public class LivestreamingVideoStats
{
public readonly int CommentCount;
public readonly int ReactionCount;
public readonly string TotalViews;
public LivestreamingVideoStats(IntPtr o)
{
CommentCount = CAPI.ovr_LivestreamingVideoStats_GetCommentCount(o);
ReactionCount = CAPI.ovr_LivestreamingVideoStats_GetReactionCount(o);
TotalViews = CAPI.ovr_LivestreamingVideoStats_GetTotalViews(o);
}
}
}