#include "game.h" #include "../raylib.h" #include "log.h" #include "input.h" #include "parse.h" #include #include #include #define TARGET_FPS 60 int main(void) { InitWindow(800, 450, "Text Adventure"); SetTargetFPS(TARGET_FPS); Game *g = game_create(); game_load_rooms(g); g->current_room = &g->rooms->rooms[0]; game_load_transitions(g); game_load_words(g); game_load_flags(g); game_run_until_close(g); CloseWindow(); free_game(g); return 0; }