VR4Medical/ICI/Library/PackageCache/com.unity.xr.management@20be87dea580/Editor/Legacy/XRLegacyStandaloneSubsystem.cs
2025-07-29 13:45:50 +03:00

24 lines
465 B
C#

#if !UNITY_2020_2_OR_NEWER
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using UnityEditor;
using UnityEditor.PackageManager;
namespace UnityEditor.XR.Management.Legacy
{
[InitializeOnLoad]
class XRLegacyStandaloneSubsystem
{
static XRLegacyStandaloneSubsystem()
{
PackageManager.Client.Add("com.unity.subsystemregistration");
}
}
}
#endif // !UNITY_2020_2_OR_NEWER