wabbajack/Wabbajack.Compression.BSA/Interfaces/IReader.cs
2021-09-27 06:42:46 -06:00

15 lines
335 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; }
}
}