XPlor/libs/assets/rawfile.h

21 lines
247 B
C
Raw Normal View History

2025-06-07 11:20:47 -04:00
#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