mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-15 05:26:01 +00:00
10 lines
202 B
C#
10 lines
202 B
C#
|
|
namespace SharpCompress.Compressor.Rar.decode
|
||
|
|
{
|
||
|
|
internal class MultDecode : Decode
|
||
|
|
{
|
||
|
|
internal MultDecode()
|
||
|
|
: base(new int[Compress.MC20])
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|