using UnityEngine; namespace GraphicsCat { public sealed class SeparatorAttribute : PropertyAttribute { public float Height { get; } public SeparatorAttribute(float height = 1f) { Height = height; } } }