15 lines
261 B
C#
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;
|
|
}
|
|
}
|
|
}
|