2020-09-10 05:08:12 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace RobloxFiles.BinaryFormat
|
2019-06-08 03:43:28 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IBinaryFileChunk
|
|
|
|
|
{
|
2020-07-13 01:19:30 +00:00
|
|
|
|
void Load(BinaryRobloxFileReader reader);
|
|
|
|
|
void Save(BinaryRobloxFileWriter writer);
|
2020-09-10 05:08:12 +00:00
|
|
|
|
void WriteInfo(StringBuilder builder);
|
2019-06-08 03:43:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|