summaryrefslogtreecommitdiff
path: root/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs
blob: 927b43c2beffd5934d45cf73ae7b0ccdccdb5170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using UnityEngine;

namespace Boxophobic.StyledGUI
{
    public class StyledCategory : PropertyAttribute
    {
        public string category;

        public StyledCategory(string category)
        {
            this.category = category;
        }
    }
}