thrive/01_text_adventure/game.h

11 lines
129 B
C
Raw Normal View History

2025-01-02 20:57:00 -05:00
#ifndef _FD_GAME_
#define _FD_GAME_
#include <stdbool.h>
typedef struct GameState {
bool *should_close;
} GameState;
#endif