Files
ZHGD_Web/SelfPackages/XCharts/Editor/Attributes/ComponentEditorAttribute.cs
2025-07-13 23:16:20 +08:00

15 lines
357 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;
}
}
}