Files
KOF/Assets/Plugins/ThirdParty/NaughtyAttributes/Scripts/Editor/PropertyMetas/PropertyMeta.cs
2025-07-02 15:13:26 +08:00

10 lines
219 B
C#

using UnityEditor;
namespace NaughtyAttributes.Editor
{
public abstract class PropertyMeta
{
public abstract void ApplyPropertyMeta(SerializedProperty property, MetaAttribute metaAttribute);
}
}