thrive/01_text_adventure/game.h

19 lines
295 B
C

#ifndef _FD_GAME_
#define _FD_GAME_
#include <stdbool.h>
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