Esempio n. 1
0
 /// <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;
 }
Esempio n. 2
0
 /// <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);
 }