9 lines
199 B
C#
9 lines
199 B
C#
using UnityEditor;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
[PropertyDrawCondition(typeof(HideIfAttribute))]
|
|
public class HideIfPropertyDrawCondition : ShowIfPropertyDrawCondition
|
|
{
|
|
}
|
|
}
|