12 lines
234 B
C#
12 lines
234 B
C#
using System;
|
|
|
|
namespace UnityEngine.EventSystems
|
|
{
|
|
// Token: 0x02000008 RID: 8
|
|
public interface IPointerClickHandler : IEventSystemHandler
|
|
{
|
|
// Token: 0x06000005 RID: 5
|
|
void OnPointerClick(PointerEventData eventData);
|
|
}
|
|
}
|