diff options
author | camthesaxman <cameronghall@cox.net> | 2017-11-26 15:10:56 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-11-26 15:10:56 -0600 |
commit | 026e017a16df44806b95435403a8e3b8dbe78084 (patch) | |
tree | 83b651219e44c467077d5a16f3d77574924b9a3a /src/battle/battle_3.c | |
parent | e7215091ee44b26d83753104f879671db4224803 (diff) |
flag, vars, items constants
Diffstat (limited to 'src/battle/battle_3.c')
-rw-r--r-- | src/battle/battle_3.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/battle/battle_3.c b/src/battle/battle_3.c index 05fd89d24..0d9e8c41d 100644 --- a/src/battle/battle_3.c +++ b/src/battle/battle_3.c @@ -1,9 +1,10 @@ #include "global.h" #include "constants/abilities.h" #include "battle.h" -#include "moves.h" +#include "constants/moves.h" #include "item.h" -#include "items.h" +#include "constants/items.h" +#include "event_data.h" #include "hold_effects.h" #include "constants/species.h" #include "pokemon.h" @@ -12,7 +13,7 @@ #include "text.h" #include "battle_move_effects.h" #include "string_util.h" -#include "flags.h" +#include "constants/flags.h" #include "ewram.h" extern u8* gBattlescriptCurrInstr; |