Add assets
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Cainos.LucidEditor
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public class LabelWidthAttribute : Attribute
|
||||
{
|
||||
public readonly float width;
|
||||
|
||||
public LabelWidthAttribute(float width)
|
||||
{
|
||||
this.width = width;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user