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