Roblox-File-Format/Interfaces/IBinaryFileChunk.cs
2020-07-12 20:19:30 -05:00

9 lines
192 B
C#

namespace RobloxFiles.BinaryFormat
{
public interface IBinaryFileChunk
{
void Load(BinaryRobloxFileReader reader);
void Save(BinaryRobloxFileWriter writer);
}
}