summaryrefslogtreecommitdiff
path: root/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs')
-rw-r--r--Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs b/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs
new file mode 100644
index 00000000..927b43c2
--- /dev/null
+++ b/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs
@@ -0,0 +1,15 @@
+using UnityEngine;
+
+namespace Boxophobic.StyledGUI
+{
+ public class StyledCategory : PropertyAttribute
+ {
+ public string category;
+
+ public StyledCategory(string category)
+ {
+ this.category = category;
+ }
+ }
+}
+