// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Input { /// /// Interface to implement to react to speech recognition. /// public interface IMixedRealitySpeechHandler : IMixedRealityBaseInputHandler { void OnSpeechKeywordRecognized(SpeechEventData eventData); } }