mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 20:51:40 +00:00
12 lines
282 B
C#
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"; } }
|
|
}
|
|
} |