mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-25 21:04:01 +00:00
12 lines
323 B
C#
12 lines
323 B
C#
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.DTOs.BSA.FileStates;
|
|
|
|
namespace Wabbajack.Compression.BSA.Interfaces;
|
|
|
|
public interface IBuilder
|
|
{
|
|
ValueTask AddFile(AFile state, Stream src, CancellationToken token);
|
|
ValueTask Build(Stream filename, CancellationToken token);
|
|
} |