diff options
author | camthesaxman <cameronghall@cox.net> | 2018-02-05 17:38:23 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2018-02-05 17:38:23 -0600 |
commit | 607cba8c2e5253874f378cd6280fd066b0c9fa3d (patch) | |
tree | 8894b0b686adc29286d078500932306fabbc2973 /include/pokemon_animation.h | |
parent | 663ecd00145da49fda7d2509d629d737ea633cd8 (diff) | |
parent | eb6aed50e56f36ce416f7ecc8edfacea1da61bf1 (diff) |
Merge branch 'master' into battle_refactor
Diffstat (limited to 'include/pokemon_animation.h')
-rw-r--r-- | include/pokemon_animation.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/pokemon_animation.h b/include/pokemon_animation.h index 42fc10809..c1ab8d817 100644 --- a/include/pokemon_animation.h +++ b/include/pokemon_animation.h @@ -1,7 +1,10 @@ #ifndef GUARD_POKEMON_ANIMATION_H #define GUARD_POKEMON_ANIMATION_H -void LaunchAnimationTaskForFrontSprite(struct Sprite* sprite, u8 frontAnimId); -void LaunchAnimationTaskForBackSprite(struct Sprite* sprite, u8 backAnimId); +u8 GetSpeciesBackAnimSet(u16 species); +void LaunchAnimationTaskForFrontSprite(struct Sprite *sprite, u8 frontAnimId); +void StartMonSummaryAnimation(struct Sprite *sprite, u8 frontAnimId); +void LaunchAnimationTaskForBackSprite(struct Sprite *sprite, u8 backAnimSet); +void SetSpriteCB_MonAnimDummy(struct Sprite *sprite); #endif // GUARD_POKEMON_ANIMATION_H |