// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using UnityEngine.SubsystemsImplementation; namespace Microsoft.MixedReality.OpenXR.ARSubsystems { public class XRMarkerSubsystemDescriptor : SubsystemDescriptorWithProvider { internal struct Cinfo { /// /// The string identifier for a specific implementation. /// internal string id { get; set; } /// /// Specifies the provider implementation type to use for instantiation. /// /// /// The provider implementation type to use for instantiation. /// internal Type providerType { get; set; } /// /// Specifies the XRMarkerSubsystem-derived type that forwards casted calls to its provider. /// /// /// The type of the subsystem to use for instantiation. If null, XRMarkerSubsystem will be instantiated. /// internal Type subsystemTypeOverride { get; set; } } /// /// Creates a new subsystem descriptor and registers it with the SubsystemManager. /// /// Construction info for the descriptor. internal static void Create(Cinfo cinfo) { var descriptor = new XRMarkerSubsystemDescriptor(cinfo); SubsystemDescriptorStore.RegisterDescriptor(descriptor); } private XRMarkerSubsystemDescriptor(Cinfo cinfo) { id = cinfo.id; providerType = cinfo.providerType; subsystemTypeOverride = cinfo.subsystemTypeOverride; } } }