mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2025-12-08 20:53:28 +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();
|
|
}
|
|
} |