Trinity File Descriptor (trpfd) #
Description: #
The trpfd describes the packs and files inside trpfs.
Schema: #
namespace Titan.FileSystem;
table EmptyTable {
}
table FileInfo {
pack_index: uint64;
unk_1: EmptyTable;
}
table Packinfo {
file_size: uint64;
file_count: uint64;
}
table TRPFD {
file_hashes: [uint64];
pack_strings: [string];
files: [FileInfo];
packs: [Packinfo];
}
root_type TRPFD;