AlicizaX/Client/Packages/com.alicizax.unity/Editor/Constant/ComponentTargetAttribute.cs
陈思海 eb38f67131 init
2025-01-23 19:06:48 +08:00

15 lines
281 B
C#

using System;
namespace AlicizaX.Editor
{
[AttributeUsage(AttributeTargets.Class)]
public class ComponentTargetAttribute : Attribute
{
public Type Type;
public ComponentTargetAttribute(Type type)
{
Type = type;
}
}
}