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

9 lines
186 B
C#

using UnityEditor;
namespace NaughtyAttributes.Editor
{
[PropertyDrawer(typeof(DisableIfAttribute))]
public class DisableIfPropertyDrawer : EnableIfPropertyDrawer
{
}
}