9 lines
186 B
C#
9 lines
186 B
C#
using UnityEditor;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
[PropertyDrawer(typeof(DisableIfAttribute))]
|
|
public class DisableIfPropertyDrawer : EnableIfPropertyDrawer
|
|
{
|
|
}
|
|
}
|