using UnityEngine.XR.OpenXR.NativeTypes; namespace UnityEngine.XR.OpenXR.Features.MagicLeapSupport { using MagicLeapOpenXRSystemNotificationNativeTypes; [System.Obsolete("Type has been relocated to new namespace. Update reference to MagicLeap.OpenXR.Features.MagicLeapSystemNotificationNativeFunctions")] internal unsafe class MagicLeapSystemNotificationNativeFunctions : MagicLeapNativeFunctionsBase { internal delegate* unmanaged [Cdecl] XrSetSystemNotifications; protected override void LocateNativeFunctions() { XrSetSystemNotifications = (delegate* unmanaged[Cdecl])LocateNativeFunction("xrSetSystemNotificationsML"); } } }