835e44e4db
Co-authored-by: emiyl <me@emiyl.com> * Introduce the game variables struct * Fix clang format * Move game variables into their own file
21 lines
393 B
C
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
|