thrive/01_text_adventure/game.h

14 lines
182 B
C

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