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

12 lines
232 B
C#

using System;
namespace UnityEngine.EventSystems
{
// Token: 0x02000005 RID: 5
public interface IPointerExitHandler : IEventSystemHandler
{
// Token: 0x06000002 RID: 2
void OnPointerExit(PointerEventData eventData);
}
}