15 lines
398 B
C#
15 lines
398 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using Microsoft.MixedReality.Toolkit.Input;
|
|
using UnityEngine.Events;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.UI
|
|
{
|
|
/// <summary>
|
|
/// A UnityEvent callback containing a TouchEventData payload.
|
|
/// </summary>
|
|
[System.Serializable]
|
|
public class TouchEvent : UnityEvent<HandTrackingInputEventData> { }
|
|
}
|