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

11 lines
245 B
C#

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