mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-24 09:18:21 -05:00
15 lines
407 B
C#
15 lines
407 B
C#
|
namespace TriInspector.Elements
|
|||
|
{
|
|||
|
internal class TriInspectorElement : TriPropertyCollectionBaseElement
|
|||
|
{
|
|||
|
public TriInspectorElement(TriPropertyTree propertyTree)
|
|||
|
{
|
|||
|
DeclareGroups(propertyTree.TargetObjectType);
|
|||
|
|
|||
|
foreach (var childProperty in propertyTree.Properties)
|
|||
|
{
|
|||
|
AddProperty(childProperty);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|