diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-12-11 16:52:28 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-12-11 16:52:28 +0100 |
commit | 8ac17e09486006c7d2d066173c8fa907aceb72de (patch) | |
tree | 8e78f66bf9214a9ed6129d8dfddca171fda22e75 /include/pokeblock.h | |
parent | b4d10ab7aba76bf9ab16f07cc9409083388c603d (diff) |
move data from asm to pokeblock.c
Diffstat (limited to 'include/pokeblock.h')
-rw-r--r-- | include/pokeblock.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/pokeblock.h b/include/pokeblock.h index 058c0815e..5d691df22 100644 --- a/include/pokeblock.h +++ b/include/pokeblock.h @@ -1,7 +1,8 @@ #ifndef GUARD_POKEBLOCK_H #define GUARD_POKEBLOCK_H -#define TAG_POKEBLOCK_GFX 0x39E2 +#define GFX_TAG_POKEBLOCK 14818 +#define GFX_TAG_POKEBLOCK_CASE 14800 enum { @@ -34,6 +35,11 @@ void ChooseMonToGivePokeblock(struct Pokeblock *pokeblock, void (*callback)(void void CB2_PreparePokeblockFeedScene(void); // pokeblock +extern const s8 gPokeblockFlavorCompatibilityTable[]; +extern const u8 *const gPokeblockNames[]; +extern const struct CompressedSpriteSheet gPokeblockCase_SpriteSheet; +extern const struct CompressedSpritePalette gPokeblockCase_SpritePal; + u8 CreatePokeblockCaseSprite(s16 x, s16 y, u8 subpriority); u8 GetPokeblockData(const struct Pokeblock *pokeblock, u8 dataId); void ClearPokeblocks(void); |