15 lines
289 B
C#
15 lines
289 B
C#
using System;
|
|
|
|
namespace Oculus.Platform.Models
|
|
{
|
|
public class LivestreamingApplicationStatus
|
|
{
|
|
public readonly bool StreamingEnabled;
|
|
|
|
public LivestreamingApplicationStatus(IntPtr o)
|
|
{
|
|
StreamingEnabled = CAPI.ovr_LivestreamingApplicationStatus_GetStreamingEnabled(o);
|
|
}
|
|
}
|
|
}
|