mirror of
https://notabug.org/scuti/lib3ddevil1
synced 2024-11-22 13:53:02 +05:30
12 lines
203 B
C
12 lines
203 B
C
#ifndef DEVIL1PLD_H
|
|
#define DEVIL1PLD_H
|
|
|
|
#include <stdint.h>
|
|
#pragma pack(1)
|
|
struct PldHeader {
|
|
int32_t numOffset;
|
|
// array of numOffset elements
|
|
uint32_t *offsets; // <format=hex>
|
|
};
|
|
|
|
#endif |