Files
XCharts/Assets/XCharts/Editor/Attributes/ComponentEditorAttribute.cs
2021-12-24 13:33:09 +08:00

17 lines
359 B
C#

using System;
namespace XCharts.Editor
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public sealed class ComponentEditorAttribute : Attribute
{
public readonly Type componentType;
public ComponentEditorAttribute(Type componentType)
{
this.componentType = componentType;
}
}
}