mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 23:18:36 -05:00
12 lines
432 B
C
12 lines
432 B
C
#ifndef POKEPLATINUM_MAIN_MENU_GBA_POKEMON_H
|
|
#define POKEPLATINUM_MAIN_MENU_GBA_POKEMON_H
|
|
|
|
#include "main_menu/gba_save.h"
|
|
|
|
u32 GBABoxPokemon_GetData(GBABoxPokemon *gbaBoxMon, int field, u8 *data);
|
|
void GBABoxPokemon_SetData(GBABoxPokemon *gbaBoxMon, int field, const u8 *dataArg);
|
|
int GBAPokemon_ConvertSpeciesToDS(int species);
|
|
u32 GBABoxPokemon_GetLevel(GBABoxPokemon *gbaBoxMon);
|
|
|
|
#endif // POKEPLATINUM_MAIN_MENU_GBA_POKEMON_H
|