暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChartObject.cs 238B

1234567891011121314
  1. using UnityEngine;
  2. namespace XCharts.Runtime
  3. {
  4. public class ChartObject
  5. {
  6. protected GameObject m_GameObject;
  7. public virtual void Destroy()
  8. {
  9. GameObject.Destroy(m_GameObject);
  10. }
  11. }
  12. }