StyledIndent.cs 286 B

1234567891011121314151617
  1. // Cristian Pop - https://boxophobic.com/
  2. using UnityEngine;
  3. namespace Boxophobic.StyledGUI
  4. {
  5. public class StyledIndent : PropertyAttribute
  6. {
  7. public int indent;
  8. public StyledIndent(int indent)
  9. {
  10. this.indent = indent;
  11. }
  12. }
  13. }