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