XPlor/libs/assets/rawfile.h
2025-07-10 00:04:52 -04:00

18 lines
203 B
C

#ifndef RAWFILE_H
#define RAWFILE_H
#include <QString>
struct RawFile
{
qint32 namePtr;
QString name;
quint32 length;
qint32 bufferPtr;
QByteArray buffer;
};
#endif // RAWFILE_H