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