diff options
author | camthesaxman <cameronghall@cox.net> | 2017-12-05 11:55:48 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-12-05 11:55:48 -0600 |
commit | caa13f877797edbb7a1e13bf00b537bafbd4315a (patch) | |
tree | b5f49b410072efbee9d5a9e3c5a632a9482cc895 /src/calculate_base_damage.c | |
parent | 54da96309186b98263b4434911e1c5b8d4b4e3ec (diff) |
convert some constants to C headers
Diffstat (limited to 'src/calculate_base_damage.c')
-rw-r--r-- | src/calculate_base_damage.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/calculate_base_damage.c b/src/calculate_base_damage.c index 89770b17a..868bf734a 100644 --- a/src/calculate_base_damage.c +++ b/src/calculate_base_damage.c @@ -1,14 +1,14 @@ #include "global.h" -#include "abilities.h" +#include "constants/abilities.h" #include "battle.h" -#include "hold_effects.h" +#include "constants/hold_effects.h" #include "event_data.h" #include "item.h" -#include "items.h" +#include "constants/items.h" #include "pokemon.h" #include "species.h" #include "moves.h" -#include "battle_move_effects.h" +#include "constants/battle_move_effects.h" extern u32 gBattleTypeFlags; extern struct BattlePokemon gBattleMons[4]; |