NG_/XCharts/Editor/ChildComponents/TitleStyleDrawer.cs

12 lines
282 B
C#
Raw Normal View History

2024-12-13 18:49:44 +08:00
using UnityEditor;
using UnityEngine;
using XCharts.Runtime;
namespace XCharts.Editor
{
[CustomPropertyDrawer(typeof(TitleStyle), true)]
public class TitleStyleDrawer : LabelStyleDrawer
{
public override string ClassName { get { return "TitleStyle"; } }
}
}