16 lines
237 B
C#
16 lines
237 B
C#
using UnityEngine;
|
|
|
|
namespace Boxophobic.StyledGUI
|
|
{
|
|
public class StyledSpace : PropertyAttribute
|
|
{
|
|
public int space;
|
|
|
|
public StyledSpace(int space)
|
|
{
|
|
this.space = space;
|
|
}
|
|
}
|
|
}
|
|
|