APL/APL1.1/SAE11_2021/main.c

20 lines
499 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 "graph_sup.h"
2021-11-29 00:31:21 +01:00
#include "taquin.h"
2021-12-07 14:55:51 +01:00
#include "menu.h"
2021-11-22 17:29:33 +01:00
2021-12-02 15:57:18 +01:00
int main(int argc, char* argv[]) {
2021-11-22 17:29:33 +01:00
InitialiserGraphique();
2021-12-04 00:08:27 +01:00
CreerFenetre((Maxx() - WIDTH) / 2, (Maxy() - HEIGHT) / 2, 1200, 700);
ChoisirTitreFenetre("Taquin"); /* Ben alors Denis, on nous cache des fonctions ? */
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;
}