mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-26 06:53:26 -05:00
13 lines
265 B
C
13 lines
265 B
C
#ifndef POKEHEARTGOLD_SAVE_FRONTIER_H
|
|
#define POKEHEARTGOLD_SAVE_FRONTIER_H
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct FRONTIER_SAVE {
|
|
u16 unk_000[112];
|
|
u16 unk_0E0[5][32]; // just guessing here
|
|
u8 filler_220[0x1408];
|
|
} FRONTIER_SAVE; // size: 0x1628
|
|
|
|
#endif
|