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

9 lines
197 B
C#

using UnityEditor;
namespace NaughtyAttributes.Editor
{
public abstract class PropertyDrawCondition
{
public abstract bool CanDrawProperty(SerializedProperty property);
}
}