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