PackIndex Asset
The packindex asset exists only in Black Ops 1 and World at War. It most likely holds pack file indexes..
struct PackIndexEntry // 0xC
{
int unknown[3];
};
struct PackIndexStruct // 0x14
{
int magic; // "PAK0"
int unknown1;
int entryCount;
int unknown2[2];
};
struct PackIndex // 0x1C
{
const char *name;
PackIndexStruct struct1;
PackIndexEntry *entries; // count = struct1.entryCount
};