diff options
author | chai <chaifix@163.com> | 2021-04-07 15:38:57 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-04-07 15:38:57 +0800 |
commit | ff5a3fbf31db349db11bbc5c60ba199d26780f19 (patch) | |
tree | cd8fec7d2910408470dc9d141dc72ac00cd148bf /Assets/uGUI-2017.1/UnityEngine.UI/EventSystem/EventInterfaces.cs | |
parent | 6b25723ca33a657882588b2cc3a58101bb9d33e6 (diff) |
*移动目录
Diffstat (limited to 'Assets/uGUI-2017.1/UnityEngine.UI/EventSystem/EventInterfaces.cs')
-rw-r--r-- | Assets/uGUI-2017.1/UnityEngine.UI/EventSystem/EventInterfaces.cs | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/Assets/uGUI-2017.1/UnityEngine.UI/EventSystem/EventInterfaces.cs b/Assets/uGUI-2017.1/UnityEngine.UI/EventSystem/EventInterfaces.cs deleted file mode 100644 index b808e6c..0000000 --- a/Assets/uGUI-2017.1/UnityEngine.UI/EventSystem/EventInterfaces.cs +++ /dev/null @@ -1,91 +0,0 @@ -namespace UnityEngine.EventSystems -{ - public interface IEventSystemHandler - { - } - - public interface IPointerEnterHandler : IEventSystemHandler - { - void OnPointerEnter(PointerEventData eventData); - } - - public interface IPointerExitHandler : IEventSystemHandler - { - void OnPointerExit(PointerEventData eventData); - } - - public interface IPointerDownHandler : IEventSystemHandler - { - void OnPointerDown(PointerEventData eventData); - } - - public interface IPointerUpHandler : IEventSystemHandler - { - void OnPointerUp(PointerEventData eventData); - } - - public interface IPointerClickHandler : IEventSystemHandler - { - void OnPointerClick(PointerEventData eventData); - } - - public interface IBeginDragHandler : IEventSystemHandler - { - void OnBeginDrag(PointerEventData eventData); - } - - public interface IInitializePotentialDragHandler : IEventSystemHandler - { - void OnInitializePotentialDrag(PointerEventData eventData); - } - - public interface IDragHandler : IEventSystemHandler - { - void OnDrag(PointerEventData eventData); - } - - public interface IEndDragHandler : IEventSystemHandler - { - void OnEndDrag(PointerEventData eventData); - } - - public interface IDropHandler : IEventSystemHandler - { - void OnDrop(PointerEventData eventData); - } - - public interface IScrollHandler : IEventSystemHandler - { - void OnScroll(PointerEventData eventData); - } - - public interface IUpdateSelectedHandler : IEventSystemHandler - { - void OnUpdateSelected(BaseEventData eventData); - } - - public interface ISelectHandler : IEventSystemHandler - { - void OnSelect(BaseEventData eventData); - } - - public interface IDeselectHandler : IEventSystemHandler - { - void OnDeselect(BaseEventData eventData); - } - - public interface IMoveHandler : IEventSystemHandler - { - void OnMove(AxisEventData eventData); - } - - public interface ISubmitHandler : IEventSystemHandler - { - void OnSubmit(BaseEventData eventData); - } - - public interface ICancelHandler : IEventSystemHandler - { - void OnCancel(BaseEventData eventData); - } -} |