21 lines
298 B
C
21 lines
298 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <raylib.h>
|
|
|
|
#include "game.h"
|
|
|
|
int main(void) {
|
|
InitWindow(800, 450, "Text Adventure");
|
|
SetTargetFPS(60);
|
|
|
|
Game *g = game_create();
|
|
|
|
game_run_until_close(g);
|
|
CloseWindow();
|
|
|
|
free_game(g);
|
|
return 0;
|
|
}
|