VR4Medical/ICI/Library/PackageCache/com.unity.xr.interaction.toolkit@42ef3600567b/Editor/Analytics/PackageVersionData.cs
2025-07-29 13:45:50 +03: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