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