Make archives more distinct from normal folders

This commit is contained in:
Matt Nadareski
2025-01-04 22:09:53 -05:00
parent acdc8d84b1
commit 3dc8466cf7
5 changed files with 156 additions and 81 deletions

View File

@@ -173,11 +173,11 @@ namespace SabreTools.FileTypes
}
/// <summary>
/// Create an Folder object of the specified type, if possible
/// Create an IFolder object of the specified type, if possible
/// </summary>
/// <param name="outputFormat">OutputFormat representing the archive to create</param>
/// <returns>Archive object representing the inputs</returns>
public static Folder? CreateFolderType(OutputFormat outputFormat)
/// <returns>IFolder object representing the inputs</returns>
public static IFolder? CreateFolderType(OutputFormat outputFormat)
{
return outputFormat switch
{