Files
2025-05-18 22:39:39 +03:00

11 lines
230 B
C#

using System;
using UnityEngine;
namespace Golems.Attributes
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
public class ReadOnly : PropertyAttribute
{
}
}