diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-10-22 10:01:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-22 10:01:07 -0700 |
commit | 3e5dd1d047bada52ab0dce2fe58b04e39bcaa1cc (patch) | |
tree | 0e40067d711c783ef97667f4a8256f38ab0d4b0a /include/debug_menu.h | |
parent | 3f7ee3a806d965fae70fd98f2cd1af13a2e4cf0b (diff) |
Death by 74 files (#65)
* death by 74 files
* 20% reached
* doc move stuff in pokemon
* fix undef reference
* doc more and plumb a few more constanst for num party members and num moves
* that struct is def PokemonMove.. clean up all code with it
Diffstat (limited to 'include/debug_menu.h')
-rw-r--r-- | include/debug_menu.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/debug_menu.h b/include/debug_menu.h index 4e0c951..ea3b3d6 100644 --- a/include/debug_menu.h +++ b/include/debug_menu.h @@ -2,6 +2,7 @@ #define GUARD_DEBUG_MENU_H #include "text.h" +#include "menu.h" enum DebugMenuOptions { @@ -24,6 +25,32 @@ struct DebugMenu }; +struct unkStruct_203B3F8 +{ + // size: 0x140 + u32 state; + s16 unk4; + u16 unk6; + struct PokemonStruct *pokemon; + u32 unkC; + const char *unk10; + u8 fill14[0x60 - 0x14]; + u32 unk60; + u32 unk64; + u32 unk68; + u32 unk6C; + u32 unk70; + u32 unk74; + struct UnkTextStruct2 *unk78; + u32 unk7C; + u32 unk80; + u8 fill84[0x90 - 0x84]; + struct MenuItem unk90[8]; + u16 unkD0[8]; + struct UnkTextStruct2 unkE0[4]; +}; + + void CreateDebugMenu(void); void DeleteDebugMenu(void); u32 UpdateDebugMenu(void); |