hanafuda/main.c

27 lines
432 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
char *text = "こんにちわ、 世界!";
2025-02-02 18:13:19 -05:00
Texture2D cards_texture;
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-05 21:19:05 -05:00
InitWindow(1200, 700, "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
}