using fxl.codes.kisekae.data.Entities; using Microsoft.Extensions.Logging; namespace fxl.codes.kisekae.data.Archives; public class LhCodecService(ILogger logger) { public async Task ReadArchive(Stream stream) { throw new NotImplementedException(); } internal static IEnumerable GetFiles(ref readonly Stream stream) { var files = new List(); while (stream.Position + 21 < stream.Length) files.Add(new LhContainer(in stream)); return files; } }