21 lines
527 B
C
21 lines
527 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <graph.h>
|
|
#include <time.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include "utils.h"
|
|
#include "graph_sup.h"
|
|
|
|
#include "taquin.h"
|
|
#include "lib_menu/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;
|
|
} |