diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-24 00:02:29 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-24 00:02:29 +0100 |
commit | 9320fe8f8533ae3f0f8ef638f7cc6a51076af21f (patch) | |
tree | 92748ee23bfd38a53236ccfbf8c5f10299e44a97 /src/pokemon.c | |
parent | 81b38c00e4933f2dea6fbd2e80ae13692a19fa66 (diff) |
Clear includes
Diffstat (limited to 'src/pokemon.c')
-rw-r--r-- | src/pokemon.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/pokemon.c b/src/pokemon.c index 319dbdecb..7c4103855 100644 --- a/src/pokemon.c +++ b/src/pokemon.c @@ -1,4 +1,5 @@ #include "global.h" +#include "alloc.h" #include "apprentice.h" #include "battle.h" #include "battle_controllers.h" @@ -12,12 +13,14 @@ #include "item.h" #include "link.h" #include "main.h" -#include "alloc.h" +#include "overworld.h" #include "m4a.h" +#include "party_menu.h" #include "pokedex.h" #include "pokeblock.h" #include "pokemon.h" #include "pokemon_animation.h" +#include "pokemon_summary_screen.h" #include "pokemon_storage_system.h" #include "pokenav.h" #include "random.h" @@ -68,15 +71,10 @@ extern const struct CompressedSpritePalette gMonPaletteTable[]; extern const struct CompressedSpritePalette gMonShinyPaletteTable[]; extern const u8 gTrainerClassNames[][13]; -extern u8 pokemon_order_func(u8); extern u16 get_unknown_box_id(void); -extern u8 StorageGetCurrentBox(void); extern void set_unknown_box_id(u8); -extern void sub_803FA70(u8 battlerId); -extern u8 sav1_map_get_name(void); extern bool8 sub_806F104(void); extern u8 sub_81D63C8(u16 trainerOpponentId); -extern void SummaryScreen_SetUnknownTaskId(u8); // this file's functions static u16 CalculateBoxMonChecksum(struct BoxPokemon *boxMon); |