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