11 lines
261 B
C#
11 lines
261 B
C#
using UnityEngine;
|
|
|
|
namespace RPGCoreCommon.Helpers.PropertyAttributeDrawers
|
|
{
|
|
public class ReadOnlyAttribute : PropertyAttribute
|
|
{
|
|
public ReadOnlyAttribute(bool applyToCollection = false) : base(applyToCollection)
|
|
{
|
|
}
|
|
}
|
|
} |