13 lines
356 B
C#
13 lines
356 B
C#
![]() |
using System;
|
||
|
using System.Diagnostics;
|
||
|
|
||
|
namespace AlicizaX.AnimationFlow.Runtime {
|
||
|
[AttributeUsage(AttributeTargets.Class), Conditional("UNITY_EDITOR")]
|
||
|
public class CategoryAttribute : Attribute {
|
||
|
public readonly string category;
|
||
|
public CategoryAttribute(string category) {
|
||
|
this.category = category;
|
||
|
}
|
||
|
}
|
||
|
}
|