Files
Dec2017-Script-Dump/UnityEngine.UI/EventSystems/IBeginDragHandler.cs
T
2026-06-04 11:42:34 +02:00

12 lines
228 B
C#

using System;
namespace UnityEngine.EventSystems
{
// Token: 0x02000009 RID: 9
public interface IBeginDragHandler : IEventSystemHandler
{
// Token: 0x06000006 RID: 6
void OnBeginDrag(PointerEventData eventData);
}
}