mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
16 lines
450 B
C#
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|