Tri-Inspector/Editor.Extras/GroupDrawers/TriTabGroupDrawer.cs

16 lines
450 B
C#
Raw Normal View History

2022-01-21 06:21:57 -05:00
using TriInspector;
using TriInspector.Elements;
using TriInspector.GroupDrawers;
[assembly: RegisterTriGroupDrawer(typeof(TriTabGroupDrawer))]
namespace TriInspector.GroupDrawers
{
public class TriTabGroupDrawer : TriGroupDrawer<DeclareTabGroupAttribute>
{
public override TriPropertyCollectionBaseElement CreateElement(DeclareTabGroupAttribute attribute)
{
return new TriTabGroupElement();
}
}
}