// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Input { /// /// Mixed Reality Toolkit input device definition, used to instantiate and manage one or more input devices /// public interface IMixedRealityInputDeviceManager : IMixedRealityDataProvider { /// /// Retrieve all controllers currently registered with this device at runtime (if direct access is required) /// IMixedRealityController[] GetActiveControllers(); } }