// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit { /// /// Required interface for all Mixed Reality data providers. Data providers are the components /// that supply services with required information (ex: input controller state). /// public interface IMixedRealityDataProvider : IMixedRealityService { // Reserved for future use. } }