Files
Cielonos/Assets/OtherPlugins/GraphicsCat/Modules/Common/PropertyAttributes/SeparatorAttribute.cs
SoulliesOfficial d15957c719 更新
2025-12-17 04:19:38 -05:00

15 lines
261 B
C#

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