/// <summary> /// Initializes a new instance of the <see cref="VdfsExtractor"/> class. /// </summary> /// <param name="vdfsReader"> An instance of <see cref="VdfsReader"/>. </param> public VdfsExtractor(VdfsReader vdfsReader) { _vdfsReader = vdfsReader; }
/// <summary> /// Initializes a new instance of the <see cref="VdfsExtractor"/> class. /// </summary> /// <param name="vdfFilePath">Path of VDFS archive.</param> public VdfsExtractor(string vdfFilePath) { _vdfsReader = new VdfsReader(vdfFilePath); }