mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
9 lines
245 B
C#
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);
|
|
}
|
|
} |