mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-24 09:18:21 -05:00
10 lines
278 B
C#
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);
|
|||
|
}
|
|||
|
}
|