ScriptableData/Runtime/Attributes/NonExtendableAttribute.cs

8 lines
211 B
C#

using System;
using UnityEngine;
namespace ScriptableData
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true, Inherited = true)]
public class NonExtendableAttribute : PropertyAttribute { }
}