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