9 lines
194 B
C#
9 lines
194 B
C#
using UnityEditor;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public abstract class PropertyValidator
|
|
{
|
|
public abstract void ValidateProperty(SerializedProperty property);
|
|
}
|
|
}
|