12 lines
179 B
C#
12 lines
179 B
C#
using UnityEngine;
|
|
|
|
public class FPD_WidthAttribute : PropertyAttribute
|
|
{
|
|
public float LabelWidth;
|
|
|
|
public FPD_WidthAttribute(int labelWidth)
|
|
{
|
|
LabelWidth = labelWidth;
|
|
}
|
|
}
|