Files

18 lines
286 B
C#
Raw Permalink Normal View History

2025-11-24 21:29:46 +08:00
// Cristian Pop - https://boxophobic.com/
using UnityEngine;
namespace Boxophobic.StyledGUI
{
public class StyledIndent : PropertyAttribute
{
public int indent;
public StyledIndent(int indent)
{
this.indent = indent;
}
}
}