15 lines
255 B
C#
15 lines
255 B
C#
namespace Oculus.Platform
|
|
{
|
|
public static class Entitlements
|
|
{
|
|
public static Request IsUserEntitledToApplication()
|
|
{
|
|
if (Core.IsInitialized())
|
|
{
|
|
return new Request(CAPI.ovr_Entitlement_GetIsViewerEntitled());
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
}
|