18 lines
353 B
C#
18 lines
353 B
C#
using System;
|
|
|
|
namespace Oculus.Platform.Models
|
|
{
|
|
public class LaunchReportFlowResult
|
|
{
|
|
public readonly bool DidCancel;
|
|
|
|
public readonly ulong UserReportId;
|
|
|
|
public LaunchReportFlowResult(IntPtr o)
|
|
{
|
|
DidCancel = CAPI.ovr_LaunchReportFlowResult_GetDidCancel(o);
|
|
UserReportId = CAPI.ovr_LaunchReportFlowResult_GetUserReportId(o);
|
|
}
|
|
}
|
|
}
|