Tri-Inspector/Editor/TriCustomDrawer.cs

9 lines
245 B
C#
Raw Permalink Normal View History

2022-06-03 08:16:23 -04:00
namespace TriInspector
2021-12-07 10:20:36 -05:00
{
2022-06-03 08:16:23 -04:00
public abstract class TriCustomDrawer : TriPropertyExtension
2021-12-07 10:20:36 -05:00
{
internal int Order { get; set; }
2021-12-07 10:20:36 -05:00
public abstract TriElement CreateElementInternal(TriProperty property, TriElement next);
}
}