mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-14 20:00:09 +00:00
20 lines
515 B
C#
20 lines
515 B
C#
/******************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/******************************************/
|
|
|
|
using UnityEditor;
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// Editor class used to edit UI LiquidChart.
|
|
/// </summary>
|
|
|
|
[CustomEditor(typeof(LiquidChart), false)]
|
|
public class LiquidChartEditor : BaseChartEditor
|
|
{
|
|
}
|
|
} |