using System; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Wabbajack.Common; namespace Compression.BSA { public interface IBSAReader { /// /// The files defined by the archive /// IEnumerable Files { get; } ArchiveStateObject State { get; } void Dump(Action print); } }