ScriptableData/Runtime/Attributes/NonExtendableAttribute.cs

8 lines
211 B
C#
Raw Normal View History

2021-12-23 04:02:01 +01:00
using System;
using UnityEngine;
namespace ScriptableData
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true, Inherited = true)]
public class NonExtendableAttribute : PropertyAttribute { }
}