Tri-Inspector/Runtime/Attributes/DeclareBoxGroupAttribute.cs
2022-01-05 14:59:05 +03:00

16 lines
408 B
C#

using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = true)]
[Conditional("UNITY_EDITOR")]
public class DeclareBoxGroupAttribute : DeclareGroupBaseAttribute
{
public DeclareBoxGroupAttribute(string path) : base(path)
{
}
public string Title { get; set; }
}
}