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

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);
}
}