mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-11-26 22:50:22 +00:00
42 lines
995 B
C
42 lines
995 B
C
#ifndef POKEHEARTGOLD_UNK_02088288_H
|
|
#define POKEHEARTGOLD_UNK_02088288_H
|
|
|
|
#include "menu_input_state.h"
|
|
#include "options.h"
|
|
#include "player_data.h"
|
|
#include "pokemon_types_def.h"
|
|
#include "save_special_ribbons.h"
|
|
|
|
extern struct OVY_MGR_TEMPLATE gOverlayTemplate_PokemonSummary;
|
|
|
|
typedef struct PokemonSummaryArgs {
|
|
Party *party;
|
|
Options *options;
|
|
u8 unk8[0x8];
|
|
u8 unk10;
|
|
u8 unk11;
|
|
u8 unk12;
|
|
u8 partyCount;
|
|
u8 partySlot;
|
|
u8 unk15;
|
|
u8 unk16;
|
|
u16 moveToLearn;
|
|
u8 unk1A[0x2];
|
|
BOOL natDexEnabled;
|
|
SaveSpecialRibbons *ribbons;
|
|
u8 unk24[0x4];
|
|
int unk28;
|
|
int unk2C;
|
|
MenuInputStateMgr *menuInputStatePtr;
|
|
BOOL isFlag982Set;
|
|
u8 unk38[0x4];
|
|
} PokemonSummaryArgs;
|
|
|
|
u32 sub_02088288(SaveData *);
|
|
BOOL sub_0208828C(SaveData *);
|
|
void sub_02089D40(PokemonSummaryArgs *, const u8 *);
|
|
void sub_0208AD34(PokemonSummaryArgs *, PlayerProfile *);
|
|
u32 Pokemon_GetStatusIconId(Pokemon *pokemon);
|
|
|
|
#endif // POKEHEARTGOLD_UNK_02088288_H
|