mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 13:09:56 +00:00
22 lines
412 B
C
22 lines
412 B
C
#ifndef GUARD_MAIN_MENU2_H
|
|
#define GUARD_MAIN_MENU2_H
|
|
|
|
#include "structs/menu.h"
|
|
#include "structs/str_text.h"
|
|
|
|
// size: 0x1A8
|
|
typedef struct MainMenu2Work
|
|
{
|
|
u32 unk0;
|
|
MenuStruct unk4[4];
|
|
UnkTextStruct2 unk144[4];
|
|
/* 0x1A4 */ u32 currMenuChoice;
|
|
} MainMenu2Work;
|
|
|
|
void CleanMainMenu(void);
|
|
void DrawMainMenu(void);
|
|
u32 UpdateMainMenu(void);
|
|
|
|
bool8 sub_80363E0(void);
|
|
|
|
#endif // GUARD_MAIN_MENU2_H
|