diff options
Diffstat (limited to 'include')
-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 |