mirror of https://github.com/nmlgc/ReC98.git
14 lines
475 B
C++
14 lines
475 B
C++
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);
|
|
|
|
// Shows the boss defeat animation and marks the current stage as cleared.
|
|
void boss_defeat_animate(void);
|