IMHOTEP Framework
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
IPointerHoverHandler.cs
1 using UnityEngine;
2 using UnityEngine.EventSystems;
3 using System.Collections;
4 
5 namespace UI {
6  public interface IPointerHoverHandler : IEventSystemHandler
7  {
8  void OnPointerHover(PointerEventData eventData);
9  }
10 }