2020-05-13 09:54:40 +08:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
2022-02-19 22:37:57 +08:00
|
|
|
namespace XCharts.Runtime
|
2020-05-13 09:54:40 +08:00
|
|
|
{
|
|
|
|
|
public class ChartObject
|
|
|
|
|
{
|
|
|
|
|
protected GameObject m_GameObject;
|
|
|
|
|
|
|
|
|
|
public virtual void Destroy()
|
|
|
|
|
{
|
|
|
|
|
GameObject.Destroy(m_GameObject);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|