wabbajack/Wabbajack.Compression.BSA/Interfaces/IReader.cs

14 lines
301 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using System.Collections.Generic;
using Wabbajack.DTOs.BSA.ArchiveStates;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Compression.BSA.Interfaces;
public interface IReader
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
/// <summary>
/// The files defined by the archive
/// </summary>
IEnumerable<IFile> Files { get; }
2021-09-27 12:42:46 +00:00
2021-10-23 16:51:17 +00:00
IArchive State { get; }
2021-09-27 12:42:46 +00:00
}