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