#ifndef _FD_GAME_ #define _FD_GAME_ #include typedef struct GameState GameState; #include "input.h" struct GameState { bool *should_close; Input *input; }; void gs_handle_command(GameState *gs, const char *command); #endif