diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-10-11 09:03:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 09:03:17 -0700 |
commit | 25794a39c3539e66d1c0b2334cb35273cd9d8494 (patch) | |
tree | 43ca3a658e80672844b2906b8cbe151ed70c3621 /include/main_menu.h | |
parent | 2d4c802d769f53462a2742a5c6afaad4d7f290fb (diff) |
Finish main menu decomp (#59)
* decomp rest of main_menu
* move some main menu data over
* decomp some more wonder mail
* decomp the dungeon dialogue scene switches
* more wonder mail
* consolidate struct_802F204
* another wonder mail func
* more wonder mail
* slight cleanup
Diffstat (limited to 'include/main_menu.h')
-rw-r--r-- | include/main_menu.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/main_menu.h b/include/main_menu.h index 3d72acb..b794250 100644 --- a/include/main_menu.h +++ b/include/main_menu.h @@ -6,7 +6,7 @@ enum MainMenuScreens MENU_MAIN_SCREEN = 1, MENU_NEW_GAME = 3, MENU_AWAITING_RESCUE = 6, - MENU_CONTINUE = 7, + MENU_CONTINUE = 7, // used by Revive Team/Continue MENU_DELETE_SAVE_PROMPT, MENU_DELETE_SAVE_CONFIRM, MENU_ADVENTURE_LOG = 10, @@ -16,6 +16,8 @@ enum MainMenuScreens MENU_DUAL_SLOT, MENU_WIRELESS_COMMS, MENU_DEBUG = 16, + MENU_SEND_ITEMS, + MENU_RECEIVE_ITEMS, MENU_COMMUNICATION_1 = 19, MENU_COMMUNICATION_2, // NOTE: 0x1B - 0x22 used by Rescue Password Menu @@ -54,4 +56,12 @@ struct MainMenu }; + +void InitMainMenu(void); +void DeleteMainMenu(void); +void SetUpMenu(void); +s32 UpdateMenu(void); +void CleanUpMenu(void); +bool8 sub_80363E0(void); + #endif // GUARD_MAIN_MENU_H |