12 lines
232 B
C#
12 lines
232 B
C#
using System;
|
|
|
|
namespace UnityEngine.EventSystems
|
|
{
|
|
// Token: 0x02000006 RID: 6
|
|
public interface IPointerDownHandler : IEventSystemHandler
|
|
{
|
|
// Token: 0x06000003 RID: 3
|
|
void OnPointerDown(PointerEventData eventData);
|
|
}
|
|
}
|