Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/Unity/IO/Compression/IFileFormatReader.cs
2026-02-21 16:45:37 +08:00

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();
}
}