DistDecode.cs 200 B

12345678910
  1. namespace SharpCompress.Compressors.Rar.UnpackV1.Decode
  2. {
  3. internal class DistDecode : Decode
  4. {
  5. internal DistDecode()
  6. : base(new int[PackDef.DC])
  7. {
  8. }
  9. }
  10. }