// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.Toolkit.WindowsMixedReality { /// /// Defines a set of IntPtr properties that are used by the static /// to provide access to specific underlying native objects relevant to Windows Mixed Reality. /// /// /// This is intended to be used to support both XR SDK and Unity's legacy XR pipeline, which provide /// different APIs to access these native objects. /// public interface IWindowsMixedRealityUtilitiesProvider { /// /// The current native root ISpatialCoordinateSystem. /// IntPtr ISpatialCoordinateSystemPtr { get; } /// /// The current native IHolographicFrame. /// IntPtr IHolographicFramePtr { get; } } }