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

34 lines
577 B
C

/**
* @file blind_select.h
*
* @brief Blind select state functions
*/
#ifndef GAME_BLIND_SELECT_H
#define GAME_BLIND_SELECT_H
#include "blind.h"
/**
* @brief Change to the blind select background
*/
void blind_select_change_background(void);
/**
* @brief Blind select state initialization
*/
void blind_select_on_init(void);
/**
* @brief Blind select state update
*/
void blind_select_on_update(void);
/**
* @brief Blind select cleanup
*/
void blind_select_on_exit(void);
void increment_blind(enum BlindState increment_reason);
#endif // GAME_BLIND_SELECT_H