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