public Directory(Pack pack, IndexDirectory index) { Pack = pack; Index = index; }
public File GetFile(string path) { Pack pack = GetPack(path); return(pack.GetFile(path)); }
public FileDefault(Pack pack, FileCommonHeader header) : base(pack, header) { }
internal Index2Source(Pack pack, Index2 index) { _Pack = pack; _Index = index; }