b1c2b7f35e
* Initial round_end extraction * move hands to game vars * Checkpoint * Finish removing all variables for state fns * Move over round_end substate functions * Move over round_end with compile * working in general * Fix round start state issue * clang-format * Fix clang format issue * PR fixes and standardize types in game vars struct * Clang-format
30 lines
556 B
C
30 lines
556 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 game_options_menu_change_background(void);
|
|
|
|
/**
|
|
* @brief Options menu state initialization
|
|
*/
|
|
void game_options_menu_on_init(void);
|
|
|
|
/**
|
|
* @brief Options menu state update
|
|
*/
|
|
void game_options_menu_on_update(void);
|
|
|
|
/**
|
|
* @brief Options menu cleanup (called when going back to main menu)
|
|
*/
|
|
void game_options_menu_on_exit(void);
|
|
|
|
#endif // GAME_OPTIONS_MENU_H
|