mirror of
https://github.com/maxartz15/ScriptableData.git
synced 2024-11-13 02:15:30 +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 { }
|
|
} |