mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
301 B
C#
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; }
|
|
} |