Files
Two-World/Assets/Cainos/Third Party/Lucid Editor/Runtime/Attributes/LabelWidthAttribute.cs
2025-05-08 16:03:30 +09:00

15 lines
291 B
C#

using System;
namespace Cainos.LucidEditor
{
[AttributeUsage(AttributeTargets.Field)]
public class LabelWidthAttribute : Attribute
{
public readonly float width;
public LabelWidthAttribute(float width)
{
this.width = width;
}
}
}