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