Files
balatro-gba/include/game/run_setup.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

29 lines
486 B
C

/**
* @file run_setup.h
*
* @brief Setup Run menu state functions.
*/
#ifndef GAME_RUN_SETUP_H
#define GAME_RUN_SETUP_H
/**
* @brief Change to the Run Setup menu background
*/
void run_setup_change_background(void);
/**
* @brief Run Setup menu state initialization
*/
void run_setup_on_init(void);
/**
* @brief Run Setup menu state update
*/
void run_setup_on_update(void);
/**
* @brief Run Setup menu cleanup
*/
void run_setup_on_exit(void);
#endif // GAME_RUN_SETUP_H