Files
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

29 lines
653 B
C#

#if ENABLE_CLOUD_SERVICES_ANALYTICS || UNITY_2023_2_OR_NEWER
using System;
using UnityEngine;
namespace UnityEditor.XR.Interaction.Toolkit.Analytics
{
/// <summary>
/// Single entry of an installed package name and version.
/// </summary>
[Serializable]
struct PackageVersionData
{
/// <summary>
/// The name of the package, such as "com.unity.xr.openxr".
/// </summary>
[SerializeField]
public string package;
/// <summary>
/// The version of the package, such as "1.12.1".
/// </summary>
[SerializeField]
public string version;
}
}
#endif