Files
2026-03-03 05:27:03 +05:00

14 lines
279 B
C#

using UnityEngine;
namespace ThunderWire.Attributes
{
public class ReadOnlyAttribute : PropertyAttribute
{
public bool IsLabel = false;
public ReadOnlyAttribute(bool label = false)
{
IsLabel = label;
}
}
}