AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
ChartObject.cs
1 /************************************************/
2 /* */
3 /* Copyright (c) 2018 - 2021 monitor1394 */
4 /* https://github.com/monitor1394 */
5 /* */
6 /************************************************/
7 
8 using UnityEngine;
9 
10 namespace XCharts
11 {
12  public class ChartObject
13  {
14  protected GameObject m_GameObject;
15 
16  public virtual void Destroy()
17  {
18  GameObject.Destroy(m_GameObject);
19  }
20  }
21 }
XCharts.ChartObject
Definition: ChartObject.cs:12
XCharts
Definition: RewardChart.cs:14