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:
11
CompressSave/Wrapper/PeekableReader.cs
Normal file
11
CompressSave/Wrapper/PeekableReader.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user