using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Unity.XR.Oculus
{
public static partial class Utils
{
///
/// Returns the type of the current headset
///
///
public static SystemHeadset GetSystemHeadsetType()
{
return NativeMethods.GetSystemHeadsetType();
}
}
}