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/battle_2.c | |
parent | 54da96309186b98263b4434911e1c5b8d4b4e3ec (diff) |
convert some constants to C headers
Diffstat (limited to 'src/battle_2.c')
-rw-r--r-- | src/battle_2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/battle_2.c b/src/battle_2.c index eead4d7a9..48430b0f6 100644 --- a/src/battle_2.c +++ b/src/battle_2.c @@ -15,8 +15,8 @@ #include "berry.h" #include "text.h" #include "item.h" -#include "items.h" -#include "hold_effects.h" +#include "constants/items.h" +#include "constants/hold_effects.h" #include "link.h" #include "bg.h" #include "dma3.h" @@ -33,10 +33,10 @@ #include "util.h" #include "trig.h" #include "battle_ai_script_commands.h" -#include "battle_move_effects.h" +#include "constants/battle_move_effects.h" #include "battle_controllers.h" #include "pokedex.h" -#include "abilities.h" +#include "constants/abilities.h" #include "moves.h" #include "trainer_classes.h" #include "evolution_scene.h" |