Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/FPD_IndentAttribute.cs
2026-03-04 10:03:45 +08:00

18 lines
329 B
C#

using UnityEngine;
public class FPD_IndentAttribute : PropertyAttribute
{
public int IndentCount = 1;
public int LabelsWidth;
public int SpaceAfter;
public FPD_IndentAttribute(int indent = 1, int labelsWidth = 0, int spaceAfter = 0)
{
IndentCount = indent;
LabelsWidth = labelsWidth;
SpaceAfter = spaceAfter;
}
}