// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using UnityEngine; namespace Microsoft.MixedReality.Toolkit.UI { /// /// Information associated with a particular hand pan event. /// public class HandPanEventData { /// /// Hand pan delta /// public Vector2 PanDelta { get; set; } } }