Aimbot-ParallelEnv/Assets/XCharts/Editor/Attributes/ComponentEditorAttribute.cs

15 lines
357 B
C#
Raw Normal View History

2022-10-25 19:07:39 +00:00
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;
}
}
}