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