mixedreality/com.microsoft.mixedreality..../Core/Interfaces/IMixedRealityServiceConfigu...

39 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Utilities;
namespace Microsoft.MixedReality.Toolkit
{
/// <summary>
/// Defines configuration data for to be registered for a <see cref="IMixedRealityService"/> on startup.
/// Generally, used for configuring the extended interface, <see cref="IMixedRealityDataProvider"/>
/// </summary>
public interface IMixedRealityServiceConfiguration
{
/// <summary>
/// The concrete type for the system, feature or manager.
/// </summary>
SystemType ComponentType { get; }
/// <summary>
/// The name of the system, feature or manager.
/// </summary>
string ComponentName { get; }
/// <summary>
/// The priority this system, feature or manager will be initialized in.
/// </summary>
uint Priority { get; }
/// <summary>
/// The runtime platform(s) to run this service.
/// </summary>
SupportedPlatforms RuntimePlatform { get; }
/// <summary>
/// Profile configuration associated with the service
/// </summary>
BaseMixedRealityProfile Profile { get; }
}
}