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

12 lines
235 B
C#

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