GBAlatro
A Demake of Balatro for the GBA
Loading...
Searching...
No Matches
game_over.h
Go to the documentation of this file.
1
6#ifndef GAME_OVER_H
7#define GAME_OVER_H
8
12void game_lose_on_init(void);
13
17void game_win_on_init(void);
18
22void game_over_on_update(void);
23
27void game_over_on_exit(void);
28
29#endif // GAME_OVER_H
void game_lose_on_init(void)
Game Over screen state initialization when losing.
Definition game_over.c:191
void game_over_on_update(void)
Game Over screen state update.
Definition game_over.c:209
void game_over_on_exit(void)
Game Over screen cleanup, common to both losing and winning.
Definition game_over.c:298
void game_win_on_init(void)
Game Over screen state initialization when winning.
Definition game_over.c:183