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/mailbox.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/mailbox.h')
-rw-r--r-- | include/mailbox.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/mailbox.h b/include/mailbox.h index 2c08a08..1cdfa8e 100644 --- a/include/mailbox.h +++ b/include/mailbox.h @@ -1,13 +1,17 @@ #ifndef GUARD_MAILBOX_H #define GUARD_MAILBOX_H +#include "menu.h" +#include "text.h" +#include "constants/mailbox.h" + struct unkStruct_203B304 { // size: 0xB6 << 1 u32 state; u32 unk4; u8 unk8; - u8 unk9; + u8 mailIndex; u8 fillA[0xC - 0xA]; u32 unkC; u8 fill10[0x50 - 0x10]; @@ -23,5 +27,6 @@ struct unkStruct_203B304 }; extern void SetMailboxState(u32); +extern s32 GetNumAcceptedJobs(void); #endif // GUARD_MAILBOX_H |