mirror of
https://github.com/cellos51/balatro-gba.git
synced 2026-09-09 01:16:05 -05:00
* refactor: remove game prefix from extracted functions * fix: align state info table callbacks
29 lines
486 B
C
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
|