wabbajack/Wabbajack.Compression.BSA/Interfaces/IReader.cs
2021-10-23 10:51:17 -06:00

14 lines
301 B
C#

using System.Collections.Generic;
using Wabbajack.DTOs.BSA.ArchiveStates;
namespace Wabbajack.Compression.BSA.Interfaces;
public interface IReader
{
/// <summary>
/// The files defined by the archive
/// </summary>
IEnumerable<IFile> Files { get; }
IArchive State { get; }
}