15 lines
218 B
C
15 lines
218 B
C
#ifndef ASSETLIST_H
|
|
#define ASSETLIST_H
|
|
|
|
#include "asset.h"
|
|
#include "scriptstringlist.h"
|
|
|
|
struct XAssetList
|
|
{
|
|
ScriptStringList stringList;
|
|
int assetCount;
|
|
QVector<XAsset> assets;
|
|
};
|
|
|
|
#endif // ASSETLIST_H
|