24 lines
361 B
C
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;
|
|
}
|