hanafuda/main.c

24 lines
361 B
C
Raw Normal View History

2025-02-01 05:17:27 -05:00
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
2025-02-02 19:07:49 -05:00
#include <time.h>
2025-02-01 05:17:27 -05:00
#include <raylib.h>
2025-02-02 18:13:19 -05:00
#include "game.h"
2025-02-01 05:36:42 -05:00
2025-02-01 05:17:27 -05:00
int main(int argc, char** argv) {
2025-02-02 19:07:49 -05:00
srand(time(NULL));
2025-02-06 18:20:16 -05:00
InitWindow(1400, 900, "Hanafuda Hachi-Hachi");
2025-02-02 19:07:49 -05:00
SetTargetFPS(60);
2025-02-01 05:17:27 -05:00
2025-02-02 19:07:49 -05:00
Game g;
initialize_game(&g);
2025-02-02 05:21:20 -05:00
2025-02-02 19:07:49 -05:00
run_until_closing(&g);
2025-02-01 05:17:27 -05:00
2025-02-02 19:07:49 -05:00
CloseWindow();
return 0;
2025-02-01 05:17:27 -05:00
}