diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-03-01 22:32:50 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-03-01 22:32:50 -0500 |
commit | 3ceb1667c9b5e81934c7d608efc08905f21c372e (patch) | |
tree | 345a20d3189cfbf8ad00824f16872883dfdb1975 /src/battle_script_commands.c | |
parent | 3b04cfa437b093a21cdc5021843b5f52a124861e (diff) |
Reduce externs
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index a53fa30f2..8a4436a3f 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -48,6 +48,7 @@ #include "battle_pyramid.h" #include "field_specials.h" #include "pokemon_summary_screen.h" +#include "pokenav.h" extern struct MusicPlayerInfo gMPlayInfo_BGM; @@ -55,9 +56,6 @@ extern const u8* const gBattleScriptsForMoveEffects[]; // functions extern void sub_81D388C(struct Pokemon* mon, void* statStoreLocation); // pokenav.s -extern void sub_81D3640(u16 arg0, void* statStoreLocation1, void* statStoreLocation2, u8 arg3, u8 arg4, u8 arg5); // pokenav.s -extern void sub_81D3784(u16 arg0, void* statStoreLocation1, u8 arg2, u8 arg3, u8 arg4); // pokenav.s -extern u8 sub_813B21C(void); #define DEFENDER_IS_PROTECTED ((gProtectStructs[gBattlerTarget].protected) && (gBattleMoves[gCurrentMove].flags & FLAG_PROTECT_AFFECTED)) |