APL/APL1.1/SAE11_2021/main.c
2021-12-07 15:48:21 +01:00

17 lines
443 B
C

#include <stdio.h>
#include <stdlib.h>
#include <graph.h>
#include "graph_sup.h"
#include "taquin.h"
#include "menu.h"
int main(int argc, char* argv[]) {
InitialiserGraphique();
CreerFenetre((Maxx() - WIDTH) / 2, (Maxy() - HEIGHT) / 2, 1200, 700);
ChoisirTitreFenetre("Taquin"); /* Ben alors Denis, on nous cache des fonctions ? */
CreateTaquin("./images/luna.png", 500, 445, 4, 4);
Touche();
FermerGraphique();
return EXIT_SUCCESS;
}