hanafuda/main.c
2025-02-23 18:14:25 -05:00

24 lines
361 B
C

#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <time.h>
#include <raylib.h>
#include "game.h"
int main(int argc, char** argv) {
srand(time(NULL));
InitWindow(1400, 900, "Hanafuda Hachi-Hachi");
SetTargetFPS(60);
Game g;
initialize_game(&g);
run_until_closing(&g);
CloseWindow();
return 0;
}