12 lines
219 B
C#
12 lines
219 B
C#
using System;
|
|
|
|
namespace UnityEngine.EventSystems
|
|
{
|
|
// Token: 0x0200000B RID: 11
|
|
public interface IDragHandler : IEventSystemHandler
|
|
{
|
|
// Token: 0x06000008 RID: 8
|
|
void OnDrag(PointerEventData eventData);
|
|
}
|
|
}
|