mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 21:19:53 +00:00
16 lines
263 B
C
16 lines
263 B
C
#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
|