Tri-Inspector/Editor/TriCustomDrawer.cs
2022-01-05 14:59:05 +03:00

10 lines
278 B
C#

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