9 lines
219 B
C#
9 lines
219 B
C#
using UnityEditor;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public abstract class PropertyMeta
|
|
{
|
|
public abstract void ApplyPropertyMeta(SerializedProperty property, MetaAttribute metaAttribute);
|
|
}
|
|
}
|