Files
fxl.codes.kisekae/fxl.codes.kisekae.data/Archives/LhCodecService.cs
T
2024-09-25 20:01:32 -06:00

19 lines
553 B
C#

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