StyledSpace.cs 237 B

123456789101112131415
  1. using UnityEngine;
  2. namespace Boxophobic.StyledGUI
  3. {
  4. public class StyledSpace : PropertyAttribute
  5. {
  6. public int space;
  7. public StyledSpace(int space)
  8. {
  9. this.space = space;
  10. }
  11. }
  12. }