Files
2025-07-13 23:16:20 +08:00

14 lines
238 B
C#

using UnityEngine;
namespace XCharts.Runtime
{
public class ChartObject
{
protected GameObject m_GameObject;
public virtual void Destroy()
{
GameObject.Destroy(m_GameObject);
}
}
}