diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-12-28 21:34:16 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-28 21:34:16 -0600 |
commit | 6512ebff67e163a5a6c0f5e19847e2a4dda19ad1 (patch) | |
tree | 028f81d66b2cd990d163062280e558a080b30071 /include/pokemon_mail.h | |
parent | 7a1956f51d3bbba5f49f97526b79efafa85792bb (diff) | |
parent | f0ef6ae481ec2cc655f1606f074de38ef26276c4 (diff) |
Merge pull request #90 from pret/pokemon_mail_data
Pokemon mail data and some decomp
Diffstat (limited to 'include/pokemon_mail.h')
-rw-r--r-- | include/pokemon_mail.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/pokemon_mail.h b/include/pokemon_mail.h new file mode 100644 index 0000000..600db74 --- /dev/null +++ b/include/pokemon_mail.h @@ -0,0 +1,15 @@ +#ifndef POKEMON_MAIL_H +#define POKEMON_MAIL_H + +struct PokemonMail +{ + const char *headline; + const char *text; +}; + +#define NUM_POKEMON_MAIL 56 + +const char *GetPokemonMailHeadline(u8 index); +const char *GetPokemonMailText(u8 index); + +#endif // POKEMON_MAIL_H |