15 lines
195 B
C#
15 lines
195 B
C#
using System;
|
|
|
|
namespace Oculus.Platform.Models
|
|
{
|
|
public class UserProof
|
|
{
|
|
public readonly string Value;
|
|
|
|
public UserProof(IntPtr o)
|
|
{
|
|
Value = CAPI.ovr_UserProof_GetNonce(o);
|
|
}
|
|
}
|
|
}
|