public InspectorList(object target) { this.target = target; name = target.GetType().Name; _inspectors = Inspector.getInspectableProperties(target); }
public ComponentInspector(Component component) { this.component = component; name = component.GetType().Name; _inspectors = Inspector.getInspectableProperties(component); }