// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit { /// /// Interface providing properties that components can call to determine the current state of a mixed reality service. /// public interface IMixedRealityServiceState { /// /// Indicates whether or not the service has been initialized. /// bool IsInitialized { get; } /// /// Indicates whether or not the service is currently enabled. /// bool IsEnabled { get; } /// /// Indicates whether or not the Destroy method been called on this service. /// bool IsMarkedDestroyed { get; } } }