diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-02-22 12:56:01 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-02-22 13:09:23 -0500 |
commit | 2d733fb993cd2c98d0273de1b593c4076efcc573 (patch) | |
tree | 8ce4c65b99ceaffe3d4eaf508e95a390fc4a8736 /src/graphics.c | |
parent | f66d0dfce3e8642aa08838e843cb4846e9268e71 (diff) |
Move trainer pics/pals and battle terrain to src
Diffstat (limited to 'src/graphics.c')
-rw-r--r-- | src/graphics.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/graphics.c b/src/graphics.c index d80d2ae9b..d415604c0 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -954,3 +954,15 @@ const u32 gBattleAnimSpritePal_FlatRock[] = INCBIN_U32("graphics/battle_anims/sp const u16 gUnknown_8D2FBB4[] = INCBIN_U16("graphics/interface/unk_8D2FBB4.gbapal"); #include "data/graphics/pokemon.h" +#include "data/graphics/trainers.h" + +const u8 gMonIcon_QuestionMark[] = INCBIN_U8("graphics/pokemon/question_mark/icon.4bpp"); +const u8 gMonFootprint_QuestionMark[] = INCBIN_U8("graphics/pokemon/question_mark/footprint.1bpp"); + +const u32 gFile_graphics_battle_transitions_vs_frame_sheet[] = INCBIN_U32("graphics/battle_transitions/vs_frame.4bpp.lz"); +const u32 gFile_graphics_battle_transitions_vs_frame_tilemap[] = INCBIN_U32("graphics/battle_transitions/vs_frame.bin.lz"); +const u32 gFile_graphics_battle_transitions_vs_frame_palette[] = INCBIN_U32("graphics/battle_transitions/vs_frame.gbapal.lz"); + +const u32 gFile_graphics_battle_transitions_vs_sheet[] = INCBIN_U32("graphics/battle_transitions/vs.4bpp.lz"); + +#include "data/graphics/battle_terrain.h" |