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