Moved CompressSave here

This commit is contained in:
2023-12-20 15:54:52 +08:00
parent 0d6493edd2
commit 6f224902f8
46 changed files with 12915 additions and 1 deletions
+11
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();
}
}