mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
18 lines
351 B
C
18 lines
351 B
C
#ifndef GUARD_RAYQUAZA_SCENE_H
|
|
#define GUARD_RAYQUAZA_SCENE_H
|
|
|
|
void DoRayquazaScene(u8 animId, bool8 onlyOneAnim, void (*callback)(void));
|
|
|
|
enum
|
|
{
|
|
RAY_ANIM_DUO_FIGHT_PRE,
|
|
RAY_ANIM_DUO_FIGHT,
|
|
RAY_ANIM_TAKES_FLIGHT,
|
|
RAY_ANIM_DESCENDS,
|
|
RAY_ANIM_CHARGES,
|
|
RAY_ANIM_CHACES_AWAY,
|
|
RAY_ANIM_END
|
|
};
|
|
|
|
#endif // GUARD_RAYQUAZA_SCENE_H
|