mixedreality/com.microsoft.mixedreality..../SDK/Experimental/InteractiveElement/IE/Defs/SpeechInteractionEvent.cs

15 lines
491 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Input;
using UnityEngine.Events;
namespace Microsoft.MixedReality.Toolkit.Experimental.InteractiveElement
{
/// <summary>
/// A Unity event with SpeechEventData. This event is used in the event configuration for the
/// SpeechKeyword state.
/// </summary>
[System.Serializable]
public class SpeechInteractionEvent : UnityEvent<SpeechEventData> { }
}