Files
2026-06-30 21:21:30 +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);
}
}
}