thrive/01_text_adventure/main.c
2025-01-19 09:41:25 -05:00

35 lines
685 B
C

#include "game.h"
#include "../raylib.h"
#include "log.h"
#include "input.h"
#include "parse.h"
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#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);
printf("loaded transitions\n");
game_load_words(g);
printf("loaded words\n");
game_load_flags(g);
printf("loaded flags\n");
game_load_actions(g);
printf("loaded actions\n");
game_run_until_close(g);
CloseWindow();
free_game(g);
return 0;
}