예제 #1
0
 public void SetSource(VDFSArchive archive, uint offset, uint size)
 {
     this.archive = archive;
     this.offset  = offset;
     this.size    = size;
 }
예제 #2
0
 public VDFSFileInfo(string path, VDFSDirectoryInfo dirInfo, VDFSArchive archive, uint offset, uint size)
 {
     this.path    = path;
     this.dirInfo = dirInfo;
     SetSource(archive, offset, size);
 }