hanafuda/main.c

25 lines
406 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>
#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 10:21:49 -05:00
InitWindow(900, 600, "Hanafuda Hachi-Hachi");
2025-02-01 05:17:27 -05:00
SetTargetFPS(60);
2025-02-02 18:13:19 -05:00
Game g;
initialize_game(&g);
2025-02-02 05:21:20 -05:00
2025-02-02 18:13:19 -05:00
run_until_closing(&g);
2025-02-01 05:17:27 -05:00
CloseWindow();
return 0;
}