12 lines
197 B
C#
12 lines
197 B
C#
namespace Unity.IO.Compression
|
|
{
|
|
internal interface IFileFormatWriter
|
|
{
|
|
byte[] GetHeader();
|
|
|
|
void UpdateWithBytesRead(byte[] buffer, int offset, int bytesToCopy);
|
|
|
|
byte[] GetFooter();
|
|
}
|
|
}
|