ModelImporter - Add summary to 'SupportedModelFileFormatsFilter' property

This commit is contained in:
miku-666
2024-08-14 08:37:28 +02:00
parent 36a4b89282
commit 464bfcb6df

View File

@@ -73,6 +73,9 @@ namespace PckStudio.Internal
}
}
/// <summary>
/// Filter that can be used for <see cref="System.Windows.Forms.OpenFileDialog"/> or <see cref="System.Windows.Forms.SaveFileDialog"/>
/// </summary>
public string SupportedModelFileFormatsFilter => string.Join("|", _importProviders.Values.Select(p => p.DialogFilter));
public T Import(string filename)