APL/APL1.1/SAE11_2021/main.c

20 lines
389 B
C
Raw Normal View History

2021-11-22 17:29:33 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <graph.h>
#include <time.h>
2021-11-24 10:24:18 +01:00
#include <string.h>
#include <math.h>
2021-11-22 17:29:33 +01:00
#include "utils.h"
#include "graph_sup.h"
2021-11-29 00:31:21 +01:00
#include "taquin.h"
2021-11-22 17:29:33 +01:00
#include "lib_menu/menu.h"
int main(void) {
InitialiserGraphique();
CreerFenetre(100, 100, 1200, 700);
2021-11-29 00:31:21 +01:00
CreateTaquin("./images/luna.png", 500, 445, 4, 4);
2021-11-26 12:14:37 +01:00
Touche();
2021-11-22 17:29:33 +01:00
FermerGraphique();
return EXIT_SUCCESS;
}