namespace UnityEngine;
///
/// Instruct Unity to serialize a non-public field.
///
///
/// Unity does not follow the convention that attribute type names end with the "Attribute" suffix.
///
[AttributeUsage(AttributeTargets.Field)]
public sealed class SerializeField : Attribute
{
}