Files
Cielonos/Assets/OtherPlugins/GraphicsCat/Modules/Common/PropertyAttributes/SeparatorAttribute.cs

15 lines
261 B
C#
Raw Normal View History

2025-12-17 04:19:38 -05:00
using UnityEngine;
namespace GraphicsCat
{
public sealed class SeparatorAttribute : PropertyAttribute
{
public float Height { get; }
public SeparatorAttribute(float height = 1f)
{
Height = height;
}
}
}