2025-01-02 20:57:00 -05:00
|
|
|
#include "game.h"
|
2024-08-28 17:27:35 -04:00
|
|
|
#include "../raylib.h"
|
2024-08-30 06:27:14 -04:00
|
|
|
#include "log.h"
|
2024-08-28 17:27:35 -04:00
|
|
|
#include "input.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2025-01-04 04:45:44 -05:00
|
|
|
#include <stdio.h>
|
2025-01-02 20:57:00 -05:00
|
|
|
#include <stdbool.h>
|
2024-08-28 17:27:35 -04:00
|
|
|
|
|
|
|
#define TARGET_FPS 60
|
|
|
|
|
2025-01-03 20:59:10 -05:00
|
|
|
int main(void) {
|
2024-08-28 17:27:35 -04:00
|
|
|
InitWindow(800, 450, "Text Adventure");
|
|
|
|
SetTargetFPS(TARGET_FPS);
|
|
|
|
|
2025-01-04 04:45:44 -05:00
|
|
|
Game *g = game_create();
|
|
|
|
game_load_rooms(g);
|
2025-01-11 08:30:48 -05:00
|
|
|
g->current_room = &g->rooms->rooms[0];
|
2025-01-07 20:31:03 -05:00
|
|
|
game_load_transitions(g);
|
2025-01-03 21:24:56 -05:00
|
|
|
|
2025-01-04 05:01:06 -05:00
|
|
|
game_run_until_close(g);
|
2024-08-28 17:27:35 -04:00
|
|
|
CloseWindow();
|
|
|
|
|
2025-01-04 05:01:06 -05:00
|
|
|
free_game(g);
|
2024-08-28 17:27:35 -04:00
|
|
|
return 0;
|
|
|
|
}
|