mirror of https://github.com/nmlgc/ReC98.git
15 lines
303 B
C++
15 lines
303 B
C++
#include "th02/formats/mpn.hpp"
|
|
|
|
// Internal .MPN slot structure
|
|
struct mpn_t {
|
|
mpn_image_t *images;
|
|
size_t count;
|
|
Palette8 palette;
|
|
int8_t unused[10];
|
|
};
|
|
|
|
// TH04 reserves memory for 8 slots, but only actually uses the first one.
|
|
static const int MPN_COUNT = 8;
|
|
|
|
extern mpn_t mpn_slots[MPN_COUNT];
|