// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Editor.Sdks
{
public abstract partial class UxrSdkLocator
{
#region Public Types & Data
///
/// Enumerates the different SDK states.
///
public enum State
{
///
/// Not initialized.
///
Unknown,
///
/// SDK needs a higher Unity version to work.
///
NeedsHigherUnityVersion,
///
/// SDK does not support the current build target.
///
CurrentTargetNotSupported,
///
/// SDK is not installed.
///
NotInstalled,
///
/// SDK is registered but support will come soon.
///
SoonSupported,
///
/// SDK is installed and available.
///
Available
}
#endregion
}
}