Roblox-File-Format/Interfaces/IBinaryFileChunk.cs

9 lines
226 B
C#
Raw Normal View History

namespace RobloxFiles.BinaryFormat
{
public interface IBinaryFileChunk
{
void LoadFromReader(BinaryRobloxFileReader reader);
BinaryRobloxFileChunk SaveAsChunk(BinaryRobloxFileWriter writer);
}
}