14 lines
249 B
C#
14 lines
249 B
C#
namespace Unity.IO.Compression
|
|
{
|
|
internal interface IFileFormatReader
|
|
{
|
|
bool ReadHeader(InputBuffer input);
|
|
|
|
bool ReadFooter(InputBuffer input);
|
|
|
|
void UpdateWithBytesRead(byte[] buffer, int offset, int bytesToCopy);
|
|
|
|
void Validate();
|
|
}
|
|
}
|