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

21 lines
247 B
C

#ifndef RAWFILE_H
#define RAWFILE_H
#include <QString>
struct p_RawFile
{
const char *name;
int length;
const char *buffer;
};
struct RawFile : p_RawFile
{
QString name;
QString path;
int length;
};
#endif // RAWFILE_H