TextureSet Asset
This asset is a Treyarch asset, appearing only on Black Ops 1 and 2. It is thought to hold an array of textures indices.
Black Ops 1
Notice on Black Ops 1, this asset does not even contain a name.
struct TextureListElement
{
unsigned int packFileIndex;
};
struct TextureSet
{
int numTextures;
TextureListElement *listElements;
};Black Ops 2
struct TextureList
{
unsigned int textureCount;
unsigned int *textures; //Count = textureCount
};
struct TextureSet
{
const char * name;
TextureList lists[4];
};