Tri-Inspector/Editor/Elements/TriInspectorElement.cs
2022-05-18 20:03:06 +03:00

18 lines
462 B
C#

using System;
using System.Collections.Generic;
namespace TriInspector.Elements
{
internal class TriInspectorElement : TriPropertyCollectionBaseElement
{
public TriInspectorElement(Type targetObjectType, IReadOnlyList<TriProperty> properties)
{
DeclareGroups(targetObjectType);
foreach (var childProperty in properties)
{
AddProperty(childProperty);
}
}
}
}