public ParameterEditorCollection(DataEditorCollection dataEditors, IManifestParser manifestParser) : base(() => dataEditors .Where(x => (x.Type & EditorType.MacroParameter) > 0) .Union(manifestParser.CombinedManifest.PropertyEditors)) { }
public PropertyEditorCollection(DataEditorCollection dataEditors) : base(() => dataEditors .Where(x => (x.Type & EditorType.PropertyValue) > 0)) { }