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