Tri-Inspector/Runtime/Attributes/DeclareBoxGroupAttribute.cs

16 lines
408 B
C#
Raw Normal View History

2021-12-07 10:20:36 -05:00
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; }
}
}