mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2025-12-15 11:03:32 +08:00
11 lines
228 B
C#
11 lines
228 B
C#
using System.IO;
|
|
|
|
namespace CompressSave.Wrapper;
|
|
|
|
internal class PeekableReader(DecompressionStream input) : BinaryReader(input)
|
|
{
|
|
public override int PeekChar()
|
|
{
|
|
return input.PeekByte();
|
|
}
|
|
} |