15 lines
281 B
C#
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;
|
|
}
|
|
}
|
|
} |