mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
356 B
C#
13 lines
356 B
C#
using System;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.DTOs.BSA.FileStates;
|
|
|
|
namespace Wabbajack.Compression.BSA.Interfaces;
|
|
|
|
public interface IBuilder : IAsyncDisposable
|
|
{
|
|
ValueTask AddFile(AFile state, Stream src, CancellationToken token);
|
|
ValueTask Build(Stream filename, CancellationToken token);
|
|
} |