8 lines
194 B
C#
8 lines
194 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Read Only attribute.
|
|||
|
/// Attribute is use only to mark ReadOnly properties.
|
|||
|
/// </summary>
|
|||
|
public class ReadOnlyAttribute : PropertyAttribute { }
|