12 lines
228 B
C#
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);
|
|
}
|
|
}
|