XPlor/libs/assets/rawfile.h

18 lines
203 B
C
Raw Normal View History

2025-06-07 11:20:47 -04:00
#ifndef RAWFILE_H
#define RAWFILE_H
#include <QString>
2025-07-10 00:04:52 -04:00
struct RawFile
2025-06-07 11:20:47 -04:00
{
2025-07-10 00:04:52 -04:00
qint32 namePtr;
2025-06-07 11:20:47 -04:00
QString name;
2025-07-10 00:04:52 -04:00
quint32 length;
qint32 bufferPtr;
QByteArray buffer;
2025-06-07 11:20:47 -04:00
};
#endif // RAWFILE_H