mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
21 lines
537 B
C#
21 lines
537 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEngine;
|
|
|
|
namespace XCharts
|
|
{
|
|
public class ChartObject
|
|
{
|
|
protected GameObject m_GameObject;
|
|
|
|
public virtual void Destroy()
|
|
{
|
|
GameObject.Destroy(m_GameObject);
|
|
}
|
|
}
|
|
} |