Files
balatro-gba-chinese-jocker-…/include/game_variables.h
T
Rickey 835e44e4db Introduce the game variables struct (#338)
Co-authored-by: emiyl <me@emiyl.com>

* Introduce the game variables struct

* Fix clang format

* Move game variables into their own file
2026-03-29 14:32:21 -07:00

21 lines
393 B
C

/**
* @file game_variables.h
*
* @brief Game global game variables struct definition
*/
#ifndef GAME_VARIABLES_H
#define GAME_VARIABLES_H
/**
* @brief A central location for all game variables.
*
* **NOTE**: This is currently WIP and will be populated with a refactor effort.
* NOT ALL VARIABLES ARE LOCATED HERE YET
*/
typedef struct
{
} GameVariables;
#endif // GAME_VARIABLES_H