XPlor/structs.h

20 lines
290 B
C
Raw Permalink Normal View History

2025-01-09 17:54:44 -05:00
#ifndef STRUCTS_H
#define STRUCTS_H
#include <QByteArray>
// Define Lump Structure
struct Lump {
QByteArray content;
quint32 size = 0;
bool isEmpty = true;
};
// Lump Index Entry Structure
struct LumpIndexEntry {
quint32 type;
quint32 length;
};
#endif // STRUCTS_H