// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Editor.Sdks
{
public static partial class UxrSdkManager
{
#region Private Types & Data
///
/// Enumerates the different operations on the SDK preprocessor symbols.
///
private enum SetupSymbolsMode
{
///
/// Adds or removes the preprocessor symbols depending on whether the SDK is present.
///
AddOrRemove,
///
/// Removes the symbols.
///
ForceRemove
}
#endregion
}
}