Files
2026-02-21 16:45:37 +08:00

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;
}
}
}