16 lines
414 B
C#
16 lines
414 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using Microsoft.MixedReality.Toolkit.Input;
|
|
using System;
|
|
using UnityEngine.Events;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Dwell
|
|
{
|
|
/// <summary>
|
|
/// Unity event for a dwell event. Contains the pointer reference.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class DwellUnityEvent : UnityEvent<IMixedRealityPointer> { }
|
|
}
|