Files
balatro-gba/include/game/round_end.h
桌子潔 188ab2c8e6 refactor: remove game prefix from extracted functions (#611)
* refactor: remove game prefix from extracted functions

* fix: align state info table callbacks
2026-09-04 14:01:10 +03:00

30 lines
466 B
C

/**
* @file round_end.h
*
* @brief Round end game state functions
*/
#ifndef GAME_ROUND_END_H
#define GAME_ROUND_END_H
/**
* @brief Change to the round end background
*/
void round_end_change_background(void);
/**
* @brief Round end state initialization
*/
void round_end_on_init(void);
/**
* @brief Round end state update
*/
void round_end_on_update(void);
/**
* @brief Round end cleanup
*/
void round_end_on_exit(void);
#endif // GAME_ROUND_END_H