2021-10-17 09:00:48 +02:00
|
|
|
#ifndef GUARD_MYSTERY_GIFT_MENU_H
|
|
|
|
#define GUARD_MYSTERY_GIFT_MENU_H
|
|
|
|
|
|
|
|
extern bool8 gGiftIsFromEReader;
|
|
|
|
|
|
|
|
u16 GetMysteryGiftBaseBlock(void);
|
|
|
|
void CB2_MysteryGiftEReader(void);
|
2022-09-29 21:48:19 +02:00
|
|
|
void PrintMysteryGiftOrEReaderHeader(bool8 isJapanese, bool32 usePickOkCancel);
|
2021-10-17 09:00:48 +02:00
|
|
|
void MG_DrawCheckerboardPattern(u32 bg);
|
|
|
|
void MainCB_FreeAllBuffersAndReturnToInitTitleScreen(void);
|
|
|
|
bool32 PrintMysteryGiftMenuMessage(u8 *textState, const u8 *str);
|
2022-09-29 21:48:19 +02:00
|
|
|
void MG_AddMessageTextPrinter(const u8 *src);
|
2021-10-17 09:00:48 +02:00
|
|
|
void CB2_InitEReader(void);
|
|
|
|
void CB2_InitMysteryGift(void);
|
|
|
|
void MG_DrawTextBorder(u8 windowId);
|
|
|
|
s8 DoMysteryGiftYesNo(u8 *textState, u16 *windowId, bool8 yesNoBoxPlacement, const u8 *str);
|
|
|
|
|
|
|
|
#endif //GUARD_MYSTERY_GIFT_MENU_H
|