CapersProject/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledSpace.cs

16 lines
237 B
C#
Raw Normal View History

2025-02-28 15:44:25 +00:00
using UnityEngine;
namespace Boxophobic.StyledGUI
{
public class StyledSpace : PropertyAttribute
{
public int space;
public StyledSpace(int space)
{
this.space = space;
}
}
}