Files
Fruitomation/Assets/Pacore/Runtime/Attributes/InspectorReadOnly.cs
2026-03-30 10:32:44 +01:00

17 lines
358 B
C#

using UnityEngine;
using System;
namespace PashaBibko.Pacore.Attributes
{
[AttributeUsage(validOn: AttributeTargets.Field)]
public sealed class InspectorReadOnlyAttribute : PropertyAttribute
{
public string Name { get; }
public InspectorReadOnlyAttribute(string name = null)
{
Name = name;
}
}
}