Tri-Inspector/Editor.Extras/GroupDrawers/TriTabGroupDrawer.cs
2022-01-21 14:21:57 +03:00

16 lines
450 B
C#

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();
}
}
}