NG_/Assets/XCharts/Editor/ChildComponents/TitleStyleDrawer.cs
2024-12-13 19:40:05 +08:00

12 lines
282 B
C#

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"; } }
}
}