using mmfparser; using NetMFAPatcher.Utils; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NetMFAPatcher.mmfparser.mfaloaders { class ChunkList : DataLoader//This is used for MFA reading/writing { List _items = new List(); public override void Print() { throw new NotImplementedException(); } public override void Read() { var start = Reader.Tell(); while(true) { var id = Reader.ReadByte(); if(id==0) break; Console.WriteLine("ChunkFound:"+id); } } public ChunkList(ByteIO reader) : base(reader) { } } }