Files
XCharts/Editor/Attributes/ComponentEditorAttribute.cs
2022-01-05 21:40:48 +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;
}
}
}