From e7a59a1a21cec81190434e397f62c245e73063e4 Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Wed, 22 Dec 2021 17:00:21 -0600 Subject: move pokemon mail data to src --- include/pokemon_mail.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/pokemon_mail.h (limited to 'include') 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 -- cgit v1.2.3