11 lines
235 B
C#
11 lines
235 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public class PropertyMetaAttribute : BaseAttribute
|
|
{
|
|
public PropertyMetaAttribute(Type targetAttributeType) : base(targetAttributeType)
|
|
{
|
|
}
|
|
}
|
|
}
|