Files
2025-07-23 18:47:59 +08:00

10 lines
197 B
C#

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