14 lines
216 B
C
14 lines
216 B
C
#ifndef SCRIPTSTRINGLIST_H
|
|
#define SCRIPTSTRINGLIST_H
|
|
|
|
#include <QStringList>
|
|
|
|
struct ScriptStringList
|
|
{
|
|
int count;
|
|
QVector<qint32> stringPtrs;
|
|
QStringList scriptStrings;
|
|
};
|
|
|
|
#endif // SCRIPTSTRINGLIST_H
|