Files
2024-04-12 12:44:53 +02:00

16 lines
237 B
C#

using UnityEngine;
namespace Boxophobic.StyledGUI
{
public class StyledSpace : PropertyAttribute
{
public int space;
public StyledSpace(int space)
{
this.space = space;
}
}
}