AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
IComponentHandler.cs
1 /************************************************/
2 /* */
3 /* Copyright (c) 2018 - 2021 monitor1394 */
4 /* https://github.com/monitor1394 */
5 /* */
6 /************************************************/
7 
8 using UnityEngine.EventSystems;
9 using UnityEngine.UI;
10 
11 namespace XCharts
12 {
13  public interface IComponentHandler
14  {
15  void Init();
16  void Update();
17  void DrawBase(VertexHelper vh);
18  void DrawTop(VertexHelper vh);
19  void OnDrag(PointerEventData eventData);
20  void OnBeginDrag(PointerEventData eventData);
21  void OnEndDrag(PointerEventData eventData);
22  void OnPointerDown(PointerEventData eventData);
23  void OnScroll(PointerEventData eventData);
24 
25  }
26 }
XCharts
Definition: RewardChart.cs:14
XCharts.IComponentHandler
Definition: IComponentHandler.cs:13