1
0
mirror of https://github.com/soarqin/DSP_Mods_TO.git synced 2025-12-19 13:03:32 +08:00

Moved CompressSave here

This commit is contained in:
2023-12-20 15:54:17 +08:00
parent 0d6493edd2
commit 6f224902f8
46 changed files with 12915 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
using System.IO;
namespace CompressSave.Wrapper;
internal class PeekableReader(DecompressionStream input) : BinaryReader(input)
{
public override int PeekChar()
{
return input.PeekByte();
}
}