Tri-Inspector/Runtime/Attributes/DeclareVerticalGroupAttribute.cs

14 lines
375 B
C#
Raw Normal View History

2022-01-30 11:08:53 -05:00
using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = true)]
[Conditional("UNITY_EDITOR")]
public class DeclareVerticalGroupAttribute : DeclareGroupBaseAttribute
{
public DeclareVerticalGroupAttribute(string path) : base(path)
{
}
}
}