Files
XCharts/Runtime/Internal/Object/ChartObject.cs
monitor1394 489095865d XCharts 2.0
2021-01-11 08:54:28 +08:00

22 lines
551 B
C#

/************************************************/
/* */
/* Copyright (c) 2018 - 2021 monitor1394 */
/* https://github.com/monitor1394 */
/* */
/************************************************/
using System;
using UnityEngine;
namespace XCharts
{
public class ChartObject
{
protected GameObject m_GameObject;
public virtual void Destroy()
{
GameObject.Destroy(m_GameObject);
}
}
}