mixedreality/com.microsoft.mixedreality..../SDK/Experimental/InteractiveElement/Example/CustomStateEx/KeyboardEvents.cs

15 lines
428 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine.Events;
namespace Microsoft.MixedReality.Toolkit.Experimental.InteractiveElement.Examples
{
/// <summary>
/// Example event configuration for the Keyboard state.
/// </summary>
public class KeyboardEvents : BaseInteractionEventConfiguration
{
public UnityEvent OnKKeyPressed = new UnityEvent();
}
}