Tri-Inspector/Editor/TriCustomDrawer.cs
2022-06-03 15:27:09 +03:00

9 lines
245 B
C#

namespace TriInspector
{
public abstract class TriCustomDrawer : TriPropertyExtension
{
internal int Order { get; set; }
public abstract TriElement CreateElementInternal(TriProperty property, TriElement next);
}
}