Tri-Inspector/Editor/Elements/TriInspectorElement.cs
2022-01-05 14:59:05 +03:00

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);
}
}
}
}