mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
15 lines
384 B
C#
15 lines
384 B
C#
namespace TriInspector
|
|
{
|
|
public abstract class TriCustomDrawer
|
|
{
|
|
internal int Order { get; set; }
|
|
internal bool ApplyOnArrayElement { get; set; }
|
|
|
|
public virtual string CanDraw(TriProperty property)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public abstract TriElement CreateElementInternal(TriProperty property, TriElement next);
|
|
}
|
|
} |