blob: a3d8fae0559b1b4eabb39ea1601c470bd7397e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "global.h"
#include "pokemon_mail.h"
#include "data/pokemon_mail.h"
const char *GetPokemonMailHeadline(u8 index)
{
return gPokemonMail[index].headline;
}
const char *GetPokemonMailText(u8 index)
{
return gPokemonMail[index].text;
}
|