47112242e7
Holy cow, this took a lot of work. I think I may need to do a few more things before I consider this a 1.0 release, but I'm glad to have finally overcome this hurdle!
9 lines
226 B
C#
9 lines
226 B
C#
namespace RobloxFiles.BinaryFormat
|
|
{
|
|
public interface IBinaryFileChunk
|
|
{
|
|
void LoadFromReader(BinaryRobloxFileReader reader);
|
|
BinaryRobloxFileChunk SaveAsChunk(BinaryRobloxFileWriter writer);
|
|
}
|
|
}
|