blob: 600db740ef2e59db8145af5a0a4809497d035ca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|