namespace UnityEngine.XR.ARSubsystems
{
///
/// Used to indicate whether a feature or capability is supported.
///
public enum Supported
{
///
/// Support is unknown. This could be because support is still being determined.
///
Unknown,
///
/// The feature or capability is not supported.
///
Unsupported,
///
/// The feature or capability is supported.
///
Supported,
}
}