mirror of
https://github.com/maxartz15/ScriptableData.git
synced 2024-11-10 01:12:54 +01:00
8 lines
211 B
C#
8 lines
211 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace ScriptableData
|
||
|
{
|
||
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true, Inherited = true)]
|
||
|
public class NonExtendableAttribute : PropertyAttribute { }
|
||
|
}
|