Files
2024-11-20 15:21:28 +01:00

18 lines
286 B
C#

// Cristian Pop - https://boxophobic.com/
using UnityEngine;
namespace Boxophobic.StyledGUI
{
public class StyledIndent : PropertyAttribute
{
public int indent;
public StyledIndent(int indent)
{
this.indent = indent;
}
}
}