2021-05-13 09:38:32 +08:00
|
|
|
/************************************************/
|
|
|
|
|
/* */
|
|
|
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
|
|
|
/* https://github.com/monitor1394 */
|
|
|
|
|
/* */
|
|
|
|
|
/************************************************/
|
|
|
|
|
|
|
|
|
|
using UnityEngine.EventSystems;
|
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
|
|
|
|
|
namespace XCharts
|
|
|
|
|
{
|
|
|
|
|
public interface IComponentHandler
|
|
|
|
|
{
|
|
|
|
|
void Init();
|
|
|
|
|
void Update();
|
2021-05-25 23:45:15 +08:00
|
|
|
void DrawBase(VertexHelper vh);
|
|
|
|
|
void DrawTop(VertexHelper vh);
|
2021-05-13 09:38:32 +08:00
|
|
|
void OnDrag(PointerEventData eventData);
|
|
|
|
|
void OnBeginDrag(PointerEventData eventData);
|
|
|
|
|
void OnEndDrag(PointerEventData eventData);
|
|
|
|
|
void OnPointerDown(PointerEventData eventData);
|
|
|
|
|
void OnScroll(PointerEventData eventData);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|