11 lines
129 B
C
11 lines
129 B
C
|
#ifndef _FD_GAME_
|
||
|
#define _FD_GAME_
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
typedef struct GameState {
|
||
|
bool *should_close;
|
||
|
} GameState;
|
||
|
|
||
|
#endif
|