15 lines
297 B
C#
15 lines
297 B
C#
|
|
||
|
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace SLZ.Marrow.Utilities
|
||
|
{
|
||
|
public class ReadOnlyAttribute : PropertyAttribute
|
||
|
{
|
||
|
public bool includeChildren;
|
||
|
public ReadOnlyAttribute(bool includeChildren = false)
|
||
|
{
|
||
|
this.includeChildren = includeChildren;
|
||
|
}
|
||
|
}
|
||
|
}
|