Files
XCharts/Editor/ChildComponents/TitleStyleDrawer.cs
monitor1394 bafe032bb9 3.0
2022-05-22 22:17:38 +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"; } }
}
}