Extract out IO namespace, Part 3

This commit is contained in:
Matt Nadareski
2020-12-08 00:13:22 -08:00
parent 53f5d07ae4
commit 96f0a94b10
60 changed files with 950 additions and 1319 deletions

View File

@@ -1,8 +1,9 @@
using System.Collections.Generic;
using System.IO;
using SabreTools.Data;
using SabreTools.IO;
using SabreTools.Library.DatItems;
using SabreTools.Library.IO;
namespace SabreTools.Library.FileTypes
{
@@ -55,7 +56,7 @@ namespace SabreTools.Library.FileTypes
BaseArchive archive = null;
// First get the archive type
FileType? at = input.GetFileType();
FileType? at = GetFileType(input);
// If we got back null, then it's not an archive, so we we return
if (at == null)