Tri-Inspector/Editor/TriCustomDrawer.cs

10 lines
278 B
C#
Raw Normal View History

2021-12-07 18:20:36 +03:00
namespace TriInspector
{
public abstract class TriCustomDrawer
{
internal int Order { get; set; }
internal bool ApplyOnArrayElement { get; set; }
public abstract TriElement CreateElementInternal(TriProperty property, TriElement next);
}
}