mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
22 lines
515 B
C#
22 lines
515 B
C#
|
|
/******************************************/
|
||
|
|
/* */
|
||
|
|
/* Copyright (c) 2018 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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|