Files
Zombie/Assets/Plugins/ThirdParty/NaughtyAttributes/Scripts/Editor/Attributes/PropertyDrawConditionAttribute.cs

12 lines
253 B
C#

using System;
namespace NaughtyAttributes.Editor
{
public class PropertyDrawConditionAttribute : BaseAttribute
{
public PropertyDrawConditionAttribute(Type targetAttributeType) : base(targetAttributeType)
{
}
}
}