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