mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
414 B
C#
21 lines
414 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Compression.BSA
|
|
{
|
|
public interface IBSAReader
|
|
{
|
|
/// <summary>
|
|
/// The files defined by the archive
|
|
/// </summary>
|
|
IEnumerable<IFile> Files { get; }
|
|
|
|
ArchiveStateObject State { get; }
|
|
|
|
void Dump(Action<string> print);
|
|
}
|
|
}
|