mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-23 08:48: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);
|
|
}
|
|
}
|
|
}
|
|
} |