Tri-Inspector/Editor.Extras/GroupDrawers/TriBoxGroupDrawer.cs
2022-01-10 11:12:44 +03:00

16 lines
459 B
C#

using TriInspector;
using TriInspector.Elements;
using TriInspector.GroupDrawers;
[assembly: RegisterTriGroupDrawer(typeof(TriBoxGroupDrawer))]
namespace TriInspector.GroupDrawers
{
public class TriBoxGroupDrawer : TriGroupDrawer<DeclareBoxGroupAttribute>
{
public override TriPropertyCollectionBaseElement CreateElement(DeclareBoxGroupAttribute attribute)
{
return new TriBoxGroupElement(attribute);
}
}
}