pixelgon/Assets/NaughtyAttributes/Scripts/Editor/Attributes/NativePropertyDrawerAttribute.cs
2020-06-05 11:54:36 -07:00

11 lines
251 B
C#

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