15 lines
179 B
C#
15 lines
179 B
C#
using System;
|
|
|
|
namespace Oculus.Platform.Models
|
|
{
|
|
public class PartyID
|
|
{
|
|
public readonly ulong ID;
|
|
|
|
public PartyID(IntPtr o)
|
|
{
|
|
ID = CAPI.ovr_PartyID_GetID(o);
|
|
}
|
|
}
|
|
}
|