thrive/01_text_adventure/game.h
2025-01-02 20:57:00 -05:00

11 lines
129 B
C

#ifndef _FD_GAME_
#define _FD_GAME_
#include <stdbool.h>
typedef struct GameState {
bool *should_close;
} GameState;
#endif