18 lines
286 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|