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