thrive/01_text_adventure/game.h

21 lines
334 B
C

#ifndef _FD_GAME_
#define _FD_GAME_
#include <stdbool.h>
typedef struct Game Game;
#include "input.h"
#include "room.h"
struct Game {
bool should_close;
Input *input;
Rooms rooms;
Room *current_room;
};
Game *game_create(void);
void game_handle_command(Game *g, const char *command);
void game_load_rooms(Game *g);
#endif