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