mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
336 B
C#
16 lines
336 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Wabbajack.Common;
|
|||
|
|
|||
|
namespace Compression.BSA
|
|||
|
{
|
|||
|
public interface IBSABuilder : IAsyncDisposable
|
|||
|
{
|
|||
|
Task AddFile(FileStateObject state, Stream src);
|
|||
|
Task Build(AbsolutePath filename);
|
|||
|
}
|
|||
|
}
|