21 lines
296 B
C
21 lines
296 B
C
|
|
#ifndef ASSETLIST_H
|
||
|
|
#define ASSETLIST_H
|
||
|
|
|
||
|
|
#include "asset.h"
|
||
|
|
|
||
|
|
struct ScriptStringList
|
||
|
|
{
|
||
|
|
int count;
|
||
|
|
QVector<qint32> stringPtrs;
|
||
|
|
QStringList scriptStrings;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct XAssetList
|
||
|
|
{
|
||
|
|
ScriptStringList stringList;
|
||
|
|
int assetCount;
|
||
|
|
QVector<XAsset> assets;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // ASSETLIST_H
|