mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2026-02-04 06:02:17 +08:00
11 lines
216 B
C#
11 lines
216 B
C#
using System.IO;
|
|
|
|
namespace CompressSave.Wrapper;
|
|
|
|
internal class PeekableReader(DecompressionStream input) : BinaryReader(input)
|
|
{
|
|
public override int PeekChar()
|
|
{
|
|
return input.PeekByte();
|
|
}
|
|
} |