mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 05:25:00 +00:00
10 lines
198 B
C#
10 lines
198 B
C#
|
|
namespace SharpCompress.Compressor.Rar.decode
|
||
|
|
{
|
||
|
|
internal class RepDecode : Decode
|
||
|
|
{
|
||
|
|
internal RepDecode()
|
||
|
|
: base(new int[Compress.RC])
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|