Files
balatro-gba/include/game/options_menu.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
536 B
C

/**
* @file options_menu.h
*
* @brief Options menu state functions.
*/
#ifndef GAME_OPTIONS_MENU_H
#define GAME_OPTIONS_MENU_H
/**
* @brief Change the options menu background
*/
void options_menu_change_background(void);
/**
* @brief Options menu state initialization
*/
void options_menu_on_init(void);
/**
* @brief Options menu state update
*/
void options_menu_on_update(void);
/**
* @brief Options menu cleanup (called when going back to main menu)
*/
void options_menu_on_exit(void);
#endif // GAME_OPTIONS_MENU_H