mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
434 B
C#
18 lines
434 B
C#
|
using System.IO;
|
||
|
using System.Threading;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Wabbajack.Compression.BSA.FO4Archive
|
||
|
{
|
||
|
internal interface IFileBuilder
|
||
|
{
|
||
|
uint FileHash { get; }
|
||
|
uint DirHash { get; }
|
||
|
string FullName { get; }
|
||
|
|
||
|
int Index { get; }
|
||
|
|
||
|
ValueTask WriteData(BinaryWriter wtr, CancellationToken token);
|
||
|
void WriteHeader(BinaryWriter wtr, CancellationToken token);
|
||
|
}
|
||
|
}
|