2021-11-05 19:45:34 +00:00
|
|
|
enum route_col_t {
|
|
|
|
COL_MAKAI = 1,
|
|
|
|
COL_JIGOKU = 3,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Shows a special SinGyoku version of the regular boss defeat animation,
|
|
|
|
// followed by the Makai/Jigoku route selection and marking the current stage
|
|
|
|
// as cleared. Repurposes the VRAM colors [COL_MAKAI] and [COL_JIGOKU] for the
|
|
|
|
// route selection cursor.
|
|
|
|
void singyoku_defeat_animate_and_select_route(void);
|
2021-11-06 13:35:59 +00:00
|
|
|
|
|
|
|
// Shows the boss defeat animation and marks the current stage as cleared.
|
|
|
|
void boss_defeat_animate(void);
|