using System;
namespace UnityEngine.Rendering
{
///
/// Attribute used to customize UI display.
///
[AttributeUsage(AttributeTargets.Field)]
public class DisplayInfoAttribute : Attribute
{
/// Display name used in UI.
public string name;
/// Display order used in UI.
public int order;
}
}