diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-09-01 18:05:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 18:05:30 -0700 |
commit | db05ce306fa55c9d64b7123e47cf2b66416afe40 (patch) | |
tree | fa0258192daa7a0319a425a688e1c56a8ed67ab2 /include/rescue_password_menu.h | |
parent | 459171cf48157699e044b66b8274e500ecd5fe0d (diff) |
More PMD grind (#50)
* more sese grind
* match sub_802ABF8
* some more work
Diffstat (limited to 'include/rescue_password_menu.h')
-rw-r--r-- | include/rescue_password_menu.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/rescue_password_menu.h b/include/rescue_password_menu.h new file mode 100644 index 0000000..8781b1f --- /dev/null +++ b/include/rescue_password_menu.h @@ -0,0 +1,26 @@ +#ifndef GUARD_RESCUE_PASSWORD_MENU_H +#define GUARD_RESCUE_PASSWORD_MENU_H + +struct unkSprite +{ + u16 unk208; + u16 unk20A; + u16 unk20C; + u16 unk20E; +}; + +struct RescuePasswordMenu +{ + // size: 0x214 + u32 currMenu; + u32 state; + u8 fill8[0x148 - 8]; + struct UnkTextStruct2 unk148[4]; + u8 fill1A8[0x208 - 0x1A8]; + + struct unkSprite unk208; + + u32 unk210; +}; + +#endif |