XPlor/libs/assets/stringtable.h

20 lines
262 B
C
Raw Normal View History

2025-06-07 11:20:47 -04:00
#ifndef STRINGTABLESH_H
#define STRINGTABLESH_H
2025-07-10 00:04:52 -04:00
#include <QString>
#include <QList>
2025-06-07 11:20:47 -04:00
struct StringTable
{
2025-07-10 00:04:52 -04:00
qint32 namePtr;
QString name;
2025-06-07 11:20:47 -04:00
int columnCount;
int rowCount;
2025-07-10 00:04:52 -04:00
qint32 valuesPtr;
QStringList values;
2025-06-07 11:20:47 -04:00
};
#endif // STRINGTABLESH_H