Files
TheVVaS-Assets/RPGCoreCommon/Helpers/Runtime/PropertyAttributeDrawers/ReadOnlyAttribute.cs
T
2026-04-25 23:37:10 +02:00

11 lines
261 B
C#

using UnityEngine;
namespace RPGCoreCommon.Helpers.PropertyAttributeDrawers
{
public class ReadOnlyAttribute : PropertyAttribute
{
public ReadOnlyAttribute(bool applyToCollection = false) : base(applyToCollection)
{
}
}
}