Files
SoulliesOfficial ef7b479712 initial
2025-11-25 08:19:33 -05: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;
}
}
}