XPlor/libs/assets/assetlist.h
2025-06-07 11:20:47 -04:00

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