#if ENABLE_CLOUD_SERVICES_ANALYTICS || UNITY_2023_2_OR_NEWER
using System;
using UnityEngine;
namespace UnityEditor.XR.Interaction.Toolkit.Analytics
{
///
/// General project settings that does not relate to XR specifically.
///
[Serializable]
struct GeneralProjectSettingsData
{
///
/// The Active Input Handling in Edit > Project Settings > Player.
/// 0 = Input Manager (Old)
/// 1 = Input System Package (New)
/// 2 = Both
/// -1 = unable to obtain value with reflection
///
[SerializeField]
public int activeInputHandling;
///
/// Whether the project is using a scriptable render pipeline, for example URP.
/// A value of indicates that the project is using the built-in render pipeline.
///
[SerializeField]
public bool hasRenderPipeline;
}
}
#endif