public delegatevoid EventFunction<T0> (T1 handler, EventSystems.BaseEventData eventData);

설명

Function definition for an EventFunction that is used to map a given EventInterface into a specific event call.

private static readonly EventFunction<IPointerEnterHandler> s_PointerEnterHandler = Execute;

private static void Execute(IPointerEnterHandler handler, BaseEventData eventData) { handler.OnPointerEnter (ValidateEventData<PointerEventData> (eventData)); }