AlicizaX/Client/Packages/com.alicizax.unity/Editor/Constant/ComponentTargetAttribute.cs

15 lines
281 B
C#
Raw Normal View History

2025-01-23 19:06:48 +08:00
using System;
namespace AlicizaX.Editor
{
[AttributeUsage(AttributeTargets.Class)]
public class ComponentTargetAttribute : Attribute
{
public Type Type;
public ComponentTargetAttribute(Type type)
{
Type = type;
}
}
}