Files

12 lines
251 B
C#

using System;
namespace NaughtyAttributes.Editor
{
public class NativePropertyDrawerAttribute : BaseAttribute
{
public NativePropertyDrawerAttribute(Type targetAttributeType) : base(targetAttributeType)
{
}
}
}